Skip to content

Commit d05ef6b

Browse files
authored
Merge pull request #32 from ryukinix/fix-deploy
fix: deploy docker auth
2 parents e9401bb + ecc2f91 commit d05ef6b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Deploy
32

43
on:
@@ -11,5 +10,12 @@ jobs:
1110
runs-on: ubuntu-latest
1211
steps:
1312
- uses: actions/checkout@v2
13+
14+
- name: Login to Docker Hub
15+
uses: docker/login-action@v3
16+
with:
17+
username: ${{ secrets.DOCKER_USERNAME }}
18+
password: ${{ secrets.DOCKER_TOKEN }}
19+
1420
- name: Run docker publish
1521
run: make docker-publish

0 commit comments

Comments
 (0)