1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

build: replace hard coded repo name with variable (#81)

This commit is contained in:
Paul-Christian Volkmer 2024-11-01 14:23:26 +01:00 committed by GitHub
parent 5575867632
commit 2fc3299543
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,6 +30,6 @@ jobs:
- name: Execute image build and push - name: Execute image build and push
run: | run: |
./gradlew bootBuildImage ./gradlew bootBuildImage
docker tag ghcr.io/ccc-mf/etl-processor ghcr.io/ccc-mf/etl-processor:${{ github.ref_name }} docker tag ghcr.io/${{ github.repository }} ghcr.io/${{ github.repository }}:${{ github.ref_name }}
docker push ghcr.io/ccc-mf/etl-processor docker push ghcr.io/${{ github.repository }}
docker push ghcr.io/ccc-mf/etl-processor:${{ github.ref_name }} docker push ghcr.io/${{ github.repository }}:${{ github.ref_name }}