Skip to content

Update FUNDING.yml

Update FUNDING.yml #58

name: build-documentation
on:
push:
branches:
- 'main'
workflow_dispatch:
jobs:
build-docc:
runs-on: macos-12
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build Documentation
run: exec ./.github/scripts/build-docc.sh
- name: Init new repo in dist folder and commit generated files
run: |
cd docs
git init
git add -A
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m 'deploy'
- name: Force push to destination branch
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: docs
force: true
directory: ./docs