Skip to content

Commit

Permalink
uncomment secrets on pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
maceto committed Feb 29, 2024
1 parent ef72dfb commit ab1564d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Tech Report API Pipeline

on: [push]

# env:
# PIPELINE_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
# PIPELINE_SA_KEY: ${{ secrets.GCP_SA_KEY }}
env:
PIPELINE_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }}
PIPELINE_SA_KEY: ${{ secrets.GCP_SA_KEY }}

jobs:
test:
Expand Down Expand Up @@ -33,9 +33,9 @@ jobs:
- uses: actions/checkout@v4
- name: Google Cloud Auth
uses: 'google-github-actions/auth@v2'
# with:
# project_id: ${{ env.PIPELINE_PROJECT_ID }}
# credentials_json: ${{ env.PIPELINE_SA_KEY }}
with:
project_id: ${{ env.PIPELINE_PROJECT_ID }}
credentials_json: ${{ env.PIPELINE_SA_KEY }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
Expand Down

0 comments on commit ab1564d

Please sign in to comment.