We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2298a24 + 98721d7 commit 5ddfd72Copy full SHA for 5ddfd72
.github/workflows/docker.yml
@@ -25,7 +25,7 @@ jobs:
25
26
- name: Get the version
27
id: get_version
28
- run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/v}
+ run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
29
30
- name: Build and push
31
uses: docker/build-push-action@v2
.github/workflows/pypi.yml
@@ -31,7 +31,7 @@ jobs:
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
32
33
run: |
34
- echo ::set-output name=VERSION::$(echo ${GITHUB_REF#refs/tags/v} | sed 's/-//')
+ echo "VERSION=$(echo ${GITHUB_REF#refs/tags/v} | sed 's/-//')" >> $GITHUB_OUTPUT
35
36
# Set package version information in the 'setup.py' file based on the
37
# released git tag information.
0 commit comments