Skip to content

Commit

Permalink
changed build-args to list
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung authored Oct 24, 2023
1 parent bc4999a commit ce2acf8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/update_artic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,18 @@ jobs:
uses: docker/build-push-action@v3
with:
file: ./artic/Dockerfile
build-args: ARTIC_VER=${{ steps.strip_artic.outputs.version }},MEDAKA_VER=${{ steps.strip_medaka.outputs.version }}
build-args: |
ARTIC_VER=${{ steps.strip_artic.outputs.version }}
MEDAKA_VER=${{ steps.strip_medaka.outputs.version }}
push: true
tags: quay.io/uphl/artic:${{ steps.strip_artic.outputs.version }}-${{ steps.strip_medaka.outputs.version }}

- name: Build and push latest tag to Quay
uses: docker/build-push-action@v3
with:
file: ./artic/Dockerfile
build-args: ARTIC_VER=${{ steps.strip_artic.outputs.version }},MEDAKA_VER=${{ steps.strip_medaka.outputs.version }}
build-args: |
ARTIC_VER=${{ steps.strip_artic.outputs.version }}
MEDAKA_VER=${{ steps.strip_medaka.outputs.version }}
push: true
tags: quay.io/uphl/artic:latest

0 comments on commit ce2acf8

Please sign in to comment.