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 f648604 commit a309b38Copy full SHA for a309b38
.github/workflows/release.yml
@@ -14,9 +14,9 @@ jobs:
14
- name: "Submodules"
15
run: "git submodule update --init --recursive"
16
- name: "Get tag version"
17
- run: echo ::set-env name=TAG_VERSION::${GITHUB_REF#refs/v*/}
+ run: echo "TAG_VERSION=${GITHUB_REF#refs/v*/}" >> $GITHUB_ENV
18
- name: "Print tag version"
19
- run: echo ${{ env.TAG_VERSION }}
+ run: echo $TAG_VERSION
20
- name: "Set up QEMU"
21
uses: docker/setup-qemu-action@v1
22
- name: "Set up Docker Buildx"
@@ -33,4 +33,4 @@ jobs:
33
push: true
34
file: docker/cpython.dockerfile
35
context: .
36
- tags: faasm/cpython:${{ env.TAG_VERSION }}
+ tags: faasm/cpython:$TAG_VERSION
0 commit comments