Skip to content

Commit

Permalink
ci: fix image names
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Jul 13, 2021
1 parent 249caf5 commit 0cbcf44
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,11 @@ jobs:

- name: Build the Docker multiarch manifest
run: |
docker manifest create ${{ env.IMAGE }} ${{ env.IMAGE }}:linux ${{ env.IMAGE }}:windows-2019
docker manifest create ${{ env.IMAGE }} \
${{ env.IMAGE }}:linux-amd64 \
${{ env.IMAGE }}:windows-2019
docker manifest create ${{ env.IMAGE }}:${{ env.VERSION }} \
${{ env.IMAGE }}:${{ env.VERSION }}-linux \
${{ env.IMAGE }}:${{ env.VERSION }}-linux-amd64 \
${{ env.IMAGE }}:${{ env.VERSION }}-windows-2019
- name: Publish the Docker multiarch manifest
Expand Down

0 comments on commit 0cbcf44

Please sign in to comment.