We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25146e6 commit 18aa505Copy full SHA for 18aa505
.github/workflows/release.yml
@@ -75,7 +75,9 @@ jobs:
75
- name: Build and push docker image
76
if: ${{ steps.get_next_version.outputs.hasNextVersion == 'true' }}
77
uses: docker/build-push-action@v5
78
+ env:
79
+ DOCKER_REPOSITORY: ghcr.io/thenativeweb/get-next-version
80
with:
81
platforms: linux/amd64,linux/arm64
82
push: true
- tags: ghcr.io/thenativeweb/get-next-version:latest,ghcr.io/thenativeweb/get-next-version:${{steps.get_next_version.outputs.version}}
83
+ tags: ${{ env.DOCKER_REPOSITORY }}:latest,${{ env.DOCKER_REPOSITORY }}:${{steps.get_next_version.outputs.version}}
0 commit comments