Skip to content

Commit cf5f8fc

Browse files
committed
fix secrets again
1 parent 1261ee7 commit cf5f8fc

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/_prepare-docker.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
arch:
55
required: true
66
type: string
7-
dockerhub_token:
8-
required: true
9-
type: string
107

118
jobs:
129
prepare-builder-docker:
@@ -20,7 +17,7 @@ jobs:
2017
uses: docker/login-action@v3
2118
with:
2219
username: blahgeek
23-
password: ${{ inputs.dockerhub_token }}
20+
password: ${{ secrets.dockerhub_token }}
2421

2522
- name: Set up Docker Buildx
2623
uses: docker/setup-buildx-action@v3

.github/workflows/daily-master.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
uses: ./.github/workflows/_prepare-docker.yml
1919
with:
2020
arch: ${{ matrix.arch }}
21+
secrets:
2122
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
2223
strategy:
2324
matrix:

.github/workflows/daily-mps.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
uses: ./.github/workflows/_prepare-docker.yml
1919
with:
2020
arch: ${{ matrix.arch }}
21+
secrets:
2122
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
2223
strategy:
2324
matrix:

0 commit comments

Comments
 (0)