Skip to content

Commit

Permalink
Missing tokens for deployment workflows (#1145)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcastellm authored Jan 19, 2023
1 parent 2d0a036 commit 4bbb266
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy.devnet.eph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
needs: build
secrets:
GH_TOKEN_CLONE_PRIVATE: ${{ secrets.GH_TOKEN_CLONE_PRIVATE }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}

container_image_build:
name: Build/Push Container Image
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy.devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
name: Test
uses: ./.github/workflows/test.yml
needs: build
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}

container_image_build:
name: Build/Push Container Image
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy.testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
uses: ./.github/workflows/test.yml
name: Test
needs: build
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}

container_image_build:
name: Build/Push Container Image
Expand Down

0 comments on commit 4bbb266

Please sign in to comment.