Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kikkomep committed Feb 1, 2021
1 parent 35456c4 commit 00e95f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ jobs:
- name: Push Docker image
if: ${{ env.ENABLE_DOCKER_PUSH == 'true' }}
run: |
for ((i = 0; i < ${#TAGS[@]}; i++)); do
docker push "${TAGS[$i]}"
for t in ${TAGS}; do
docker push ${t}
done
env:
TAGS: ${{ steps.docker_meta.outputs.tags }}

0 comments on commit 00e95f4

Please sign in to comment.