diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 1131a6db..6debfcb7 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -50,7 +50,7 @@ jobs: "https://api.github.com/repos/SiEPIC/SiEPIC_EBeam_PDK/releases/latest" \ | jq -r .tag_name) - echo "::set-output name=ebeampdk::${EBEAM_PDK}" + echo "EBEAM_PDK=$EBEAM_PDK" >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -62,7 +62,7 @@ jobs: "https://api.github.com/repos/SiEPIC/SiEPIC-Tools/releases/latest" \ | jq -r .tag_name) - echo "::set-output name=siepictools::${SIEPIC_TOOLS}" + echo "SIEPIC_TOOLS=$SIEPIC_TOOLS" >> $GITHUB_ENV env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -92,6 +92,6 @@ jobs: with: context: . push: true - tags: "${{ steps.meta.outputs.tags }}.${{ steps.ebeampdk.outputs.ebeampdk }}.${{ steps.siepictools.outputs.siepictools}}" + tags: "${{ steps.meta.outputs.tags }}.${{ env.EBEAM_PDK }}.${{ env.SIEPIC_TOOLS }}" labels: ${{ steps.meta.outputs.labels }}