Update windows-help.md #249
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Zola on GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - dev-docs | |
| - dev-docs-staging | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.ref != 'refs/heads/master' | |
| steps: | |
| - name: Checkout master | |
| uses: actions/[email protected] | |
| - name: Build only | |
| uses: shalzz/[email protected] | |
| env: | |
| BUILD_DIR: . | |
| BUILD_ONLY: true | |
| BUILD_FLAGS: --drafts | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| build_and_deploy: | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/master' | |
| steps: | |
| - name: Checkout master | |
| uses: actions/[email protected] | |
| - name: Build and deploy | |
| uses: shalzz/[email protected] | |
| env: | |
| BUILD_DIR: . | |
| PAGES_BRANCH: gh-pages | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Deploy developer docs | |
| working-directory: ${{github.workspace}} | |
| run: | | |
| git config user.name "GitHub Actions" | |
| git config user.email "[email protected]" | |
| git fetch origin gh-pages:gh-pages dev-docs-staging:dev-docs-staging | |
| git checkout gh-pages | |
| git cherry-pick dev-docs-staging || true | |
| git remote add destination "https://${{github.actor}}:${{github.token}}@github.com/${{github.repository}}.git" | |
| git push destination gh-pages |