Skip to content

Commit

Permalink
fix: Add docker meta step to correctly publish to ghcr
Browse files Browse the repository at this point in the history
  • Loading branch information
0ffz committed Dec 3, 2024
1 parent 62116ed commit 17c69c6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
cache: gradle

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/mineinabyss/discord-role-picker

- name: Run native compile
run: chmod +x gradlew && ./gradlew nativeCompile

Expand All @@ -49,4 +55,5 @@ jobs:
context: .
file: Dockerfile
push: true
tags: MineInAbyss/discord-role-picker
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 17c69c6

Please sign in to comment.