We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4ac93f commit 07f4457Copy full SHA for 07f4457
.github/workflows/docker.yml
@@ -7,6 +7,12 @@ on:
7
default: "dev"
8
required: false
9
type: string
10
+ secrets:
11
+ DOCKERHUB_TOKEN:
12
+ required: true
13
+ DOCKERHUB_USERNAME:
14
15
+
16
workflow_dispatch:
17
inputs:
18
version:
@@ -42,7 +48,7 @@ jobs:
42
48
context: .
43
49
push: true
44
50
pull: true
45
- platforms: 'linux/amd64,linux/arm64/v8'
51
+ platforms: "linux/amd64,linux/arm64/v8"
46
52
target: production
47
53
cache-from: type=gha
54
cache-to: type=gha,mode=max
.github/workflows/release.yml
@@ -24,6 +24,9 @@ jobs:
24
needs: [get_tag]
25
with:
26
version: ${{ needs.get_tag.outputs.tag }}
27
28
+ DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
29
+ DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
30
31
release:
32
needs: [get_tag, docker_build]
0 commit comments