Skip to content

Commit

Permalink
Merge pull request #37 from a2ikm/fix-missing-secrets
Browse files Browse the repository at this point in the history
Fix missing secrets
  • Loading branch information
a2ikm authored Sep 28, 2024
2 parents 36a572f + 41da1f5 commit 0337bed
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci-4-0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ jobs:
uses: ./.github/workflows/reusable--test-and-release.yaml
with:
version: "4.0"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/ci-4-2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ jobs:
uses: ./.github/workflows/reusable--test-and-release.yaml
with:
version: "4.2"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/ci-4-4.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ jobs:
uses: ./.github/workflows/reusable--test-and-release.yaml
with:
version: "4.4"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/ci-5-0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ jobs:
uses: ./.github/workflows/reusable--test-and-release.yaml
with:
version: "5.0"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/ci-6-0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ jobs:
uses: ./.github/workflows/reusable--test-and-release.yaml
with:
version: "6.0"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/ci-7-0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ jobs:
uses: ./.github/workflows/reusable--test-and-release.yaml
with:
version: "7.0"
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
7 changes: 7 additions & 0 deletions .github/workflows/reusable--test-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ on:
type: string
required: true
description: Version of MongoDB to test and release
secrets:
DOCKERHUB_USERNAME:
required: true
description: Docker Hub username
DOCKERHUB_TOKEN:
required: true
description: Docker Hub token
jobs:
test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0337bed

Please sign in to comment.