Skip to content

Commit ab1564d

Browse files
committed
uncomment secrets on pipeline
1 parent ef72dfb commit ab1564d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pipeline.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Tech Report API Pipeline
22

33
on: [push]
44

5-
# env:
6-
# PIPELINE_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
7-
# PIPELINE_SA_KEY: ${{ secrets.GCP_SA_KEY }}
5+
env:
6+
PIPELINE_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
7+
PIPELINE_SA_KEY: ${{ secrets.GCP_SA_KEY }}
88

99
jobs:
1010
test:
@@ -33,9 +33,9 @@ jobs:
3333
- uses: actions/checkout@v4
3434
- name: Google Cloud Auth
3535
uses: 'google-github-actions/auth@v2'
36-
# with:
37-
# project_id: ${{ env.PIPELINE_PROJECT_ID }}
38-
# credentials_json: ${{ env.PIPELINE_SA_KEY }}
36+
with:
37+
project_id: ${{ env.PIPELINE_PROJECT_ID }}
38+
credentials_json: ${{ env.PIPELINE_SA_KEY }}
3939

4040
- name: Setup Terraform
4141
uses: hashicorp/setup-terraform@v3

0 commit comments

Comments
 (0)