N5.42.9 — SV Injector Ramp Signal & Analog Out Fix #32
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: Deploy GitHub Pages | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - "landing/**" | |
| - "docs/**" | |
| - "404.html" | |
| - "robots.txt" | |
| - "sitemap.xml" | |
| - ".nojekyll" | |
| - ".github/workflows/pages.yml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: github-pages | |
| cancel-in-progress: false | |
| jobs: | |
| deploy: | |
| name: Publish landing and docs | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Prepare static site | |
| run: | | |
| rm -rf _site | |
| mkdir -p _site/docs | |
| cp -R landing/. _site/ | |
| cp -R docs/. _site/docs/ | |
| cp .nojekyll _site/.nojekyll | |
| cp 404.html robots.txt sitemap.xml _site/ | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: _site | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |