Skip to content

Commit

Permalink
ci: fixup tags in deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
skylenet committed May 15, 2024
1 parent 9bf832c commit dbc70fd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/actions/deploy/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,15 @@ runs:
with:
context: '.'
file: Dockerfile
tags: ${{ steps.meta.outputs.tags[0] }}-${{ steps.vars.outputs.slug }}
tags: ${{ inputs.tag }}-${{ steps.vars.outputs.slug }}
push: true
platforms: ${{ inputs.platform }}
build-args: ${{ inputs.build_args }}
- name: Image digest & tags
shell: bash
if: ${{ inputs.build_script == '' }}
run: |
cat << EOF
digest: ${{ steps.docker_build.outputs.digest }}
tags:
${{ steps.meta.outputs.tags[0] }}
${{ inputs.tag }}-${{ steps.vars.outputs.slug }}
EOF

0 comments on commit dbc70fd

Please sign in to comment.