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 5acc240 commit 3a92c62Copy full SHA for 3a92c62
.github/workflows/release.yaml
@@ -35,7 +35,7 @@ jobs:
35
echo "Tag $TAG does not match RUST_VERSION $RUST_VERSION"
36
exit 1
37
fi
38
- echo "::set-output name=RUST_VERSION::$RUST_VERSION"
+ echo "::set-output name=IMAGE_TAG::${{ github.ref_name }}"
39
- name: Login to Docker Hub
40
if: ${{ github.event.repository.full_name }} == 'lf-edge/eve-rust'
41
uses: docker/login-action@v3
@@ -52,5 +52,5 @@ jobs:
52
platforms: linux/amd64,linux/arm64
53
push: true
54
tags: |
55
- ${{ env.OCIREPO }}:${{ steps.rust_version.outputs.RUST_VERSION }}
+ ${{ env.OCIREPO }}:${{ steps.rust_version.outputs.IMAGE_TAG }}
56
${{ env.OCIREPO }}:latest
0 commit comments