Skip to content

Commit

Permalink
Fix test after full rstudio build
Browse files Browse the repository at this point in the history
  • Loading branch information
almahmoud authored Nov 6, 2023
1 parent a5cbb9f commit 8798c43
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/full-rstudio-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
git push
build:
outputs:
registryuser: ${{ steps.defs.outputs.registryuser }}
outname: ${{ steps.defs.outputs.outname }}
rver: ${{ steps.defs.outputs.rver }}
strategy:
matrix:
arch: [amd64, arm64]
Expand Down Expand Up @@ -163,7 +167,7 @@ jobs:
- name: Get image name
id: image
run: |
IMG=$(echo "${{ steps.defs.outputs.registryuser }}/${{ steps.defs.outputs.outname }}:${{ steps.defs.outputs.rver }}-${{ matrix.arch }}")
IMG=$(echo "${{needs.build.outputs.registryuser}}/${{ needs.build.outputs.outname }}:${{ needs.build.outputs.rver }}-${{ matrix.arch }}")
echo name=$IMG >> $GITHUB_OUTPUT
cat << EOF > test.Dockerfile
FROM $IMG as test
Expand Down

0 comments on commit 8798c43

Please sign in to comment.