Skip to content

Commit

Permalink
fix: only build docker once
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Urban committed Oct 23, 2024
1 parent 05bf7c4 commit e1a7f68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ jobs:
build-docker:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
registry: ['ghcr.io/b-urb/doclytics', 'bjoern5urban/doclytics']
permissions:
packages: write
contents: read
Expand Down Expand Up @@ -77,7 +74,10 @@ jobs:
with:
context: .
push: true
tags: ${{ matrix.registry }}:${{ env.BRANCH_NAME }}
tags:
- ghcr.io/b-urb/doclytics:${{ env.BRANCH_NAME }}
- bjoern5urban/doclytics:${{ env.BRANCH_NAME }}

platforms: linux/amd64,linux/arm64
release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e1a7f68

Please sign in to comment.