Skip to content

Commit

Permalink
Second attempt to fix toolshed release
Browse files Browse the repository at this point in the history
Didn't get tagging correct for the image. Trying again.
  • Loading branch information
thirtytwobits committed Jan 24, 2024
1 parent 6ffad31 commit 8f0a3a6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/toolshed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,9 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: form image tag
id: image_tag
uses: olegtarasov/[email protected]

- name: build-and-push
run: cd ${{ env.IMAGE_NAME }} && docker buildx build --platform linux/arm64,linux/amd64 --push -t ghcr.io/${{ env.ORG_NAMESPACE }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_VERSION_PREFIX }}${{ github.ref }} .
run: cd ${{ env.IMAGE_NAME }} && docker buildx build --platform linux/arm64,linux/amd64 --push -t ghcr.io/${{ env.ORG_NAMESPACE }}/${{ env.IMAGE_NAME }}:${{ steps.image_tag.outputs.tag }} .

0 comments on commit 8f0a3a6

Please sign in to comment.