Skip to content

Commit

Permalink
Fix action config
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed Jul 31, 2023
1 parent 6a9dea5 commit be3186a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

# GS64 base image + rowan extent
- name: Gather docker meta data for base image
id: docker_meta_runtime
id: docker_meta_runtime_rowan
uses: crazy-max/ghaction-docker-meta@v4
with:
images: ghcr.io/${{ github.repository_owner }}/gs64-rowan
Expand All @@ -67,13 +67,13 @@ jobs:
build-args: GS_VERSION=${{ matrix.version }}
target: docker-gs64-rowan
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta_runtime.outputs.tags }}
labels: ${{ steps.docker_meta_runtime.outputs.labels }}
tags: ${{ steps.docker_meta_runtime_rowan.outputs.tags }}
labels: ${{ steps.docker_meta_runtime_rowan.outputs.labels }}
secrets: GIT_AUTH_TOKEN=${{ secrets.DOCKER_REGISTRY_TOKEN }}

# GS64 base image + rowan extent + git
- name: Gather docker meta data for rowan-loader image
id: docker_meta_runtime
id: docker_meta_runtime_rowan_loader
uses: crazy-max/ghaction-docker-meta@v4
with:
images: ghcr.io/${{ github.repository_owner }}/gs64-rowan-loader
Expand All @@ -86,6 +86,6 @@ jobs:
build-args: GS_VERSION=${{ matrix.version }}
target: docker-gs64-rowan-loader
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta_runtime.outputs.tags }}
labels: ${{ steps.docker_meta_runtime.outputs.labels }}
tags: ${{ steps.docker_meta_runtime_rowan_loader.outputs.tags }}
labels: ${{ steps.docker_meta_runtime_rowan_loader.outputs.labels }}
secrets: GIT_AUTH_TOKEN=${{ secrets.DOCKER_REGISTRY_TOKEN }}

0 comments on commit be3186a

Please sign in to comment.