Skip to content

Commit

Permalink
fix which docker repos to use
Browse files Browse the repository at this point in the history
  • Loading branch information
jvelo committed Oct 5, 2024
1 parent 13f31b3 commit 8a7a6c4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ name: Build and Publish Docker Image
on:
push:
tags:
- "*" # Trigger on any tag push
- "v*"
workflow_dispatch:

permissions:
contents: read
packages: write

jobs:
build-and-publish:
runs-on: ubuntu-latest
Expand All @@ -23,6 +27,7 @@ jobs:
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 8a7a6c4

Please sign in to comment.