Skip to content

Commit

Permalink
Fix tagging of images from CI #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Brutus5000 committed Jun 3, 2021
1 parent 53b1f21 commit 645cd29
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
- name: Build and push Docker images
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
env:
TAG_OR_BRANCH: ${{ steps.get_tag_or_branch.outputs.TAG_OR_BRANCH }}
GRADLE_CLI_OPTS: "-Djib.to.auth.username=${{secrets.DOCKER_USERNAME}} -Djib.to.auth.password=${{secrets.DOCKER_PASSWORD}} -Djib.to.tags=${{TAG_OR_BRANCH}}"
GRADLE_CLI_OPTS: "-Djib.to.auth.username=${{secrets.DOCKER_USERNAME}} -Djib.to.auth.password=${{secrets.DOCKER_PASSWORD}} -Djib.to.tags=${{steps.get_tag_or_branch.outputs.TAG_OR_BRANCH}}"
run: "chmod +x ./gradlew && ./gradlew ${GRADLE_CLI_OPTS} jib"

0 comments on commit 645cd29

Please sign in to comment.