chore(deps): update debian docker tag to v13 #144
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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - 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 |