We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 54e6f03 + 990eabf commit 756c364Copy full SHA for 756c364
1 file changed
.github/workflows/docker.yml
@@ -3,7 +3,7 @@ name: Publish Docker image
3
on:
4
push:
5
branches:
6
- - main
+ - dev
7
release:
8
types: [published]
9
@@ -31,14 +31,14 @@ jobs:
31
images: ${{ env.dockerhub-package }},ghcr.io/${{ github.repository }}
32
33
- name: Login to GitHub Container Registry
34
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
35
with:
36
registry: ghcr.io
37
username: ${{ github.actor }}
38
password: ${{ secrets.GITHUB_TOKEN }}
39
40
- name: Login to DockerHub
41
42
43
username: ${{ secrets.DOCKERHUB_USERNAME }}
44
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -50,3 +50,4 @@ jobs:
50
push: true
51
tags: ${{ steps.meta.outputs.tags }}
52
labels: ${{ steps.meta.outputs.labels }}
53
+
0 commit comments