Skip to content

Commit

Permalink
ci: Fix list of tags
Browse files Browse the repository at this point in the history
  • Loading branch information
garberg committed Jun 14, 2024
1 parent c2e74ad commit 439bbd3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ jobs:
context: .
file: ./Dockerfile.nipapd
load: true
tags: ${{ env.NIPAPD_IMAGE }}:ci ${{ steps.nipapd_meta.outputs.tags }}
tags: |
${{ env.NIPAPD_IMAGE }}:ci
${{ steps.nipapd_meta.outputs.tags }}
push: false

- name: "www metadata"
Expand All @@ -223,7 +225,9 @@ jobs:
context: .
file: ./Dockerfile.www
load: true
tags: ${{ env.WWW_IMAGE }}:ci ${{ steps.www_meta.outputs.tags }}
tags: |
${{ env.WWW_IMAGE }}:ci
${{ steps.www_meta.outputs.tags }}
push: false

- name: "Setup Docker test"
Expand Down

0 comments on commit 439bbd3

Please sign in to comment.