Skip to content

Commit

Permalink
Merge pull request #36 from naviqore/feature/NAV-72-fix-docker-publis…
Browse files Browse the repository at this point in the history
…h-action

Feature/nav 72 fix docker publish action
  • Loading branch information
munterfi authored May 31, 2024
2 parents 979a543 + a0f5142 commit cc440de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ updates:
- package-ecosystem: "maven"
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "daily"
4 changes: 3 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up environment variables
run: echo "IMAGE_TAG=ghcr.io/${{ github.repository_owner }}/${{ github.repository }}:${{ github.event.release.tag_name }}" >> $GITHUB_ENV
run: |
GIT_TAG=${GITHUB_REF#refs/tags/}
echo "IMAGE_TAG=ghcr.io/${{ github.repository_owner }}/${{ github.repository }}:$GIT_TAG" >> $GITHUB_ENV
- name: Login to ghcr
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
Expand Down

0 comments on commit cc440de

Please sign in to comment.