Skip to content

Commit

Permalink
new workflow for ghcr publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Jul 1, 2024
1 parent 67e721b commit 834398c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish-develop-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ jobs:
push: true
tags: archmonger/conreq:develop
- name: Push to GitHub Container Registry
run: docker push ghcr.io/archmonger/conreq:develop
uses: matootie/[email protected]
with:
accessToken: ${{ github.token }}
tag: develop
11 changes: 7 additions & 4 deletions .github/workflows/publish-latest-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
with:
push: true
tags: archmonger/conreq:latest,archmonger/conreq:${{ github.event.release.tag_name }}
- name: Push to GitHub Container Registry (latest)
run: docker push ghcr.io/archmonger/conreq:latest && docker push ghcr.io/archmonger/conreq:${{ github.event.release.tag_name }}
- name: Push to GitHub Container Registry (version tag)
run: docker push ghcr.io/archmonger/conreq:${{ github.event.release.tag_name }}
- name: Push to GitHub Container Registry
uses: matootie/[email protected]
with:
accessToken: ${{ github.token }}
tag: |
latest
${{ github.event.release.tag_name }}

0 comments on commit 834398c

Please sign in to comment.