|
74 | 74 | fetch-depth: 0 |
75 | 75 | fetch-tags: true |
76 | 76 | filter: 'blob:none' |
| 77 | + submodules: recursive |
77 | 78 |
|
78 | 79 | # GET BASE IMAGE |
79 | 80 |
|
@@ -196,7 +197,7 @@ jobs: |
196 | 197 | env: |
197 | 198 | PALLET: ${{ steps.setup-precaching.outputs.pallet }}@${{ steps.setup-precaching.outputs.commit }} |
198 | 199 | with: |
199 | | - key: "container-images-${{ inputs.arch }}-pallet-${{ env.PALLET }}" |
| 200 | + key: 'container-images-${{ inputs.arch }}-pallet-${{ env.PALLET }}' |
200 | 201 | path: ${{ steps.setup-precaching.outputs.path }} |
201 | 202 |
|
202 | 203 | - name: Pre-download container images |
@@ -227,12 +228,12 @@ jobs: |
227 | 228 | # save-always flag is broken: https://github.com/actions/cache/issues/1315 ; once that's |
228 | 229 | # fixed, we can simplify this job a bit. |
229 | 230 | - name: Save container image pre-cache to GitHub Actions cache |
230 | | - if: "!steps.restore-precache.outputs.cache-hit" |
| 231 | + if: '!steps.restore-precache.outputs.cache-hit' |
231 | 232 | uses: actions/cache/save@v4 |
232 | 233 | env: |
233 | 234 | PALLET: ${{ steps.setup-precaching.outputs.pallet }}@${{ steps.setup-precaching.outputs.commit }} |
234 | 235 | with: |
235 | | - key: "container-images-${{ inputs.arch }}-pallet-${{ env.PALLET }}" |
| 236 | + key: 'container-images-${{ inputs.arch }}-pallet-${{ env.PALLET }}' |
236 | 237 | path: ${{ steps.setup-precaching.outputs.path }} |
237 | 238 |
|
238 | 239 | # Note: the following step isn't strictly necessary, but it's nice to separate the GitHub |
@@ -313,7 +314,7 @@ jobs: |
313 | 314 |
|
314 | 315 | - name: Determine output image name |
315 | 316 | env: |
316 | | - TAG_PREFIX: "software/v" |
| 317 | + TAG_PREFIX: 'software/v' |
317 | 318 | run: | |
318 | 319 | # Determine the version for the image name |
319 | 320 | if [[ -n "${{ github.event.pull_request.head.sha }}" ]]; then |
|
0 commit comments