feat: bump to stack 3.11.1 in 9.12 and 9.14 images #121
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: Dockerfile generator | |
| on: | |
| push: | |
| paths: | |
| - '**/*.ncl' | |
| - 'template/Dockerfile.ncl' | |
| - 'generate.sh' | |
| - 'generate_dockerfiles.nu' | |
| - '.github/workflows/generator.yml' | |
| pull_request: {} | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@ef8a148080ab6020fd15196c2084a2eea5ff2d25 # v22 | |
| - name: Install dependencies | |
| run: nix profile add nixpkgs#nickel nixpkgs#nushell | |
| - name: Generate Dockerfiles | |
| run: nu ./generate_dockerfiles.nu | |
| - name: Verify no diff after generation | |
| run: git diff --exit-code |