We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f63fc commit dc3b05bCopy full SHA for dc3b05b
.github/workflows/main.yml
@@ -44,7 +44,8 @@ jobs:
44
name: Container Upload
45
strategy:
46
fail-fast: false
47
- matrix: ${{ fromJson(needs.discover.outputs.matrix) }}
+ matrix:
48
+ job: ${{ fromJson(needs.discover.outputs.matrix) }}
49
runs-on: ubuntu-latest
50
permissions:
51
contents: read
@@ -70,8 +71,8 @@ jobs:
70
71
password: ${{ secrets.GITHUB_TOKEN }}
72
- name: Compute and upload closure and developer environment to ghcr.io
73
env:
- DEV_SHELL: ${{ matrix.config }}
74
- SHELL_NIX_PATH: ${{ matrix.build_path }}
+ DEV_SHELL: ${{ matrix.job.config }}
75
+ SHELL_NIX_PATH: ${{ matrix.job.build_path }}
76
NIX_STORE_SECRET_KEY: ${{ secrets.SECRET_KEY }}
77
run: ./extra/ghcr-upload.sh
78
0 commit comments