Skip to content

Commit 3f998b5

Browse files
committed
chore: fix image release name
1 parent 1ce2cb3 commit 3f998b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-tagged.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish Latest Docker Image
1+
name: Publish Tagged Docker Image
22

33
permissions:
44
packages: write
@@ -42,4 +42,4 @@ jobs:
4242
GH_USER_NAME=${{ secrets.GH_USER_NAME }}
4343
GH_USER_TOKEN=${{ secrets.GHCR_TOKEN }}
4444
tags: |
45-
${{ env.REGISTRY }}/${{ github.repository }}:${{ env.TAG }}
45+
${{ env.REGISTRY }}/${{ github.repository }}:${{ github.ref_name }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: google-github-actions/release-please-action@v3
1919
id: release
2020
with:
21-
token: ${{ secrets.RELEASE_TOKEN }}
21+
token: ${{ secrets.RELEASE_PLEASE_PAT }}
2222
release-type: go
2323
package-name: release-please-action
2424
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"revert","hidden":true}]'

0 commit comments

Comments
 (0)