We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45cfdcc commit d472652Copy full SHA for d472652
1 file changed
.github/workflows/workflows.yaml
@@ -26,6 +26,10 @@ on:
26
required: false
27
type: string
28
default: 'Dockerfile'
29
+ GITHUB_TOKEN:
30
+ description: 'Github token of the repository (automatically created by Github)'
31
+ required: false
32
+ default: ${{ github.token }}
33
secrets:
34
acr-username:
35
description: 'Username to use when logging into ACR'
@@ -67,7 +71,7 @@ jobs:
67
71
dockerfile: ${{ inputs.dockerfile }}
68
72
platforms: 'linux/amd64'
69
73
tag-prefix: 'amd64-'
70
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
74
+ GITHUB_TOKEN: ${{ inputs.token }}
75
76
77
docker-arm64:
@@ -95,7 +99,7 @@ jobs:
95
99
96
100
platforms: 'linux/arm64'
97
101
tag-prefix: 'arm64-'
98
102
103
104
docker-manifest:
105
needs: [docker-amd64, docker-arm64]
0 commit comments