Skip to content

Commit

Permalink
dont add arch to docker manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
rompetroll committed Aug 9, 2022
1 parent 8196ea8 commit c05f1e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,10 @@ jobs:
if [ ${{ github.event_name }} == 'release' ]
then
echo "Setting Stable Image Tag"
echo ::set-output name=image_tag:: ${{ env.DOCKERHUB_REPOSITORY }}:$(echo $GITHUB_REF | cut -d / -f 3)-$(uname -m)
echo ::set-output name=image_tag:: ${{ env.DOCKERHUB_REPOSITORY }}:$(echo $GITHUB_REF | cut -d / -f 3)
else
echo "Setting Unstable Image"
echo ::set-output name=image_tag:: ${{ env.DOCKERHUB_REPOSITORY }}:${{ steps.semver-tag.outputs.tag }}-$GITHUB_RUN_NUMBER-unstable-$(uname -m)
echo ::set-output name=image_tag:: ${{ env.DOCKERHUB_REPOSITORY }}:${{ steps.semver-tag.outputs.tag }}-$GITHUB_RUN_NUMBER-unstable
fi
- name: Show Tag
Expand Down

0 comments on commit c05f1e1

Please sign in to comment.