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 b0f0b58 commit 74c42e6Copy full SHA for 74c42e6
.github/workflows/docker-promote.yml
@@ -17,6 +17,10 @@ jobs:
17
ci-docker:
18
runs-on: ubuntu-latest
19
steps:
20
+ - name: Set output
21
+ id: vars
22
+ run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
23
+
24
- uses: cloudposse/github-action-docker-promote@0.3.0
25
id: promote
26
with:
@@ -27,5 +31,5 @@ jobs:
27
31
password: "${{ secrets.GITHUB_TOKEN }}"
28
32
platforms: linux/amd64,linux/arm64
29
33
from: sha-${{ github.sha }}
30
- to: ${{ github.event.release.tag_name }}
- use_metadata: false
34
+ to: ${{ steps.vars.outputs.tag }}
35
+ use_metadata: false
0 commit comments