Add CPL Marker Labels #37
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 test | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - run: npm install | |
| - run: npm run build | |
| - id: deployment | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: build/ | |
| - uses: fifsky/html-to-pdf-action@master | |
| if: github.event_name == 'pull_request' | |
| with: | |
| htmlFile: build/index.html | |
| outputFile: build/register.pdf | |
| - name: Upload the PDF as an artifact | |
| if: github.event_name == 'pull_request' | |
| id: pdf-artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: register | |
| path: build/register.pdf | |
| - name: Add artifact links to the pull request | |
| if: github.event_name == 'pull_request' | |
| uses: marocchino/sticky-pull-request-comment@v2 | |
| with: | |
| message: | | |
| Rendered register: <${{ steps.pdf-artifact.outputs.artifact-url}}> | |
| deploy: | |
| if: github.ref_name == github.event.repository.default_branch | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pages: write # to deploy to Pages | |
| id-token: write # to verify the deployment originates from an appropriate source | |
| needs: build | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |