We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b4887b + 871baa5 commit 46931edCopy full SHA for 46931ed
1 file changed
.github/workflows/release.yml
@@ -7,6 +7,7 @@ on:
7
8
env:
9
TAG: ${{ github.ref_name }}
10
+ REGISTRY: ghcr.io
11
12
jobs:
13
build:
@@ -19,9 +20,9 @@ jobs:
19
20
- name: Docker login
21
uses: docker/login-action@v1
22
with:
- registry: ghcr.io
23
- username: ${{ secrets.DOCKER_USERNAME }}
24
- password: ${{ secrets.DOCKER_PASSWORD }}
+ registry: ${{ env.REGISTRY }}
+ username: ${{ github.actor }}
25
+ password: ${{ secrets.GITHUB_TOKEN }}
26
- name: Build docker image
27
run: make docker-build TAG=${{ env.TAG }}
28
- name: Push docker image
0 commit comments