We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c44d17 commit c56e88fCopy full SHA for c56e88f
.github/workflows/build.yaml
@@ -60,7 +60,7 @@ jobs:
60
61
- name: Extract version
62
id: version
63
- run: echo ::set-output name=version::${GITHUB_REF#refs/tags/}
+ run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
64
65
- name: Build and push
66
id: push
@@ -69,7 +69,7 @@ jobs:
69
platforms: linux/amd64,linux/arm64
70
tags: ${{ steps.meta.outputs.tags }}
71
labels: ${{ steps.meta.outputs.labels }}
72
- build-args: ACTION_VERSION=${{ steps.version.outputs.version }}
+ build-args: ACTION_VERSION=${{ steps.version.outputs.VERSION }}
73
provenance: true
74
push: true
75
0 commit comments