submodule: pyocd: sync to commit 89256661e520bb395a3c6ba27e237efd3c51… #44
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: Build and Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| environment: deployment | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'true' | |
| fetch-depth: 1 | |
| - name: Build | |
| uses: jerryjvl/jekyll-build-action@v1 | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4.3.3 | |
| with: | |
| branch: main | |
| folder: _site | |
| ssh-key: ${{ secrets.DEPLOY_KEY }} | |
| repository-name: pyocd/pyocd.github.io | |
| git-config-name: pyocd-bot | |
| git-config-email: pyocd-bot-noreply@pyocd.io | |
| clean: true | |
| clean-exclude: | | |
| .nojekyll | |
| CNAME |