Skip to content

Commit

Permalink
Fix Docker promote (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
goruha committed Apr 24, 2024
1 parent ab20ef9 commit 13f1860
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
ci-docker:
runs-on: ubuntu-latest
steps:
- name: Set output
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT

- uses: cloudposse/github-action-docker-promote@0.3.0
id: promote
with:
Expand All @@ -27,5 +31,5 @@ jobs:
password: "${{ secrets.GITHUB_TOKEN }}"
platforms: linux/amd64,linux/arm64
from: sha-${{ github.sha }}
to: ${{ github.event.release.tag_name }}
use_metadata: false
to: ${{ steps.vars.outputs.tag }}
use_metadata: false

0 comments on commit 13f1860

Please sign in to comment.