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.
1 parent c1715cd commit 560733fCopy full SHA for 560733f
.github/workflows/build.yaml
@@ -11,9 +11,8 @@ on:
11
workflow_call:
12
inputs:
13
tag:
14
- type: string
15
required: true
16
- secrets: # Secrets are not passed to the workflow by default
+ secrets:
17
DOCKERHUB_PASSWORD:
18
19
.github/workflows/release.yaml
@@ -4,9 +4,6 @@ on:
4
5
6
7
- secrets:
8
- DOCKERHUB_PASSWORD:
9
- required: true
10
permissions:
contents: read
@@ -17,7 +14,7 @@ jobs:
with:
tag: ${{ github.event.inputs.tag }}
secrets:
20
- DOCKERHUB_PASSWORD: ${{ github.event.secrets.DOCKERHUB_PASSWORD }}
+ DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
21
prepare-release:
22
needs: build
23
0 commit comments