File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,16 @@ jobs:
11
11
- name : Checkout repository
12
12
uses : actions/checkout@v2
13
13
- name : Setup release please
14
- uses : google-github-actions/release-please-action@v2.19.1
14
+ uses : google-github-actions/release-please-action@v2
15
15
id : release
16
16
with :
17
17
token : ${{ secrets.GITHUB_TOKEN }}
18
18
release-type : simple
19
- changelog-path : docs/changelog .md
20
- package-name : streetmerchant
19
+ changelog-path : CHANGELOG .md
20
+ package-name : audit-org-keys
21
21
- name : Login into GitHub Container Registry
22
22
if : ${{ steps.release.outputs.release_created }}
23
- run : echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
23
+ run : echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
24
24
- name : Build Docker image
25
25
if : ${{ steps.release.outputs.release_created }}
26
26
run : |
31
31
TAG_NAME : ${{ steps.release.outputs.tag_name }}
32
32
- name : Release Docker image
33
33
if : ${{ steps.release.outputs.release_created }}
34
- run : docker push "ghcr.io/${GITHUB_REPOSITORY}"
34
+ run : |
35
+ docker push "ghcr.io/${GITHUB_REPOSITORY}:${TAG_NAME}"
36
+ docker push "ghcr.io/${GITHUB_REPOSITORY}:latest"
You can’t perform that action at this time.
0 commit comments