create local shellcheck hook that uses shellcheck from container (#523) #217
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 pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| pages: | |
| runs-on: ubuntu-latest | |
| env: | |
| SINGULARITY: 1 | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Clone Github Repo Action | |
| uses: actions/checkout@v4 | |
| - name: Setup apptainer | |
| uses: eWaterCycle/[email protected] | |
| - name: Get container from cache | |
| id: cache-sif | |
| uses: actions/cache@v4 | |
| with: | |
| path: .singularity/image.sif | |
| key: ${{ hashFiles('container.def', 'bin/.container-tag') }} | |
| - name: Get gems and node files from cache | |
| id: cache-bundle-npm | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| .home/.gems | |
| node_modules | |
| key: ${{ hashFiles('Gemfile.lock') }}-${{ hashFiles('package-lock.json') }} | |
| - if: ${{ steps.cache-sif.outputs.cache-hit != 'true' }} | |
| name: Build container | |
| run: ./bin/build_container | |
| - name: Setup project | |
| run: ./bin/setup | |
| - name: Create deploy dir | |
| run: /bin/bash lib/deploy.sh | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: "_site" | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |