Skip to content

Commit

Permalink
fix: add secrets to local workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nachoaldamav committed Nov 2, 2023
1 parent 957ed11 commit 8901797
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,16 @@ jobs:
windows-tests:
needs: [require-approval, get-team-members]
uses: ./.github/workflows/windows.yml
with:
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
GCP_USER: ${{ secrets.GCP_USER }}
GCP_MAIL: ${{ secrets.GCP_MAIL }}
secrets:
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
GCP_USER: ${{ secrets.GCP_USER }}
GCP_MAIL: ${{ secrets.GCP_MAIL }}

macos-tests:
needs: [require-approval, get-team-members]
Expand All @@ -77,3 +87,13 @@ jobs:
linux-tests:
needs: [require-approval, get-team-members]
uses: ./.github/workflows/linux.yml
with:
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
GCP_USER: ${{ secrets.GCP_USER }}
GCP_MAIL: ${{ secrets.GCP_MAIL }}
secrets:
GCP_CREDENTIALS: ${{ secrets.GCP_CREDENTIALS }}
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
GCP_USER: ${{ secrets.GCP_USER }}
GCP_MAIL: ${{ secrets.GCP_MAIL }}

0 comments on commit 8901797

Please sign in to comment.