Skip to content

Commit

Permalink
Create Google Services JSON File for user-auth-service and history-se…
Browse files Browse the repository at this point in the history
…rvice
  • Loading branch information
kinoarizu committed Jan 2, 2025
1 parent 0cb7cdb commit e4ef04e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/history-service-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Create vizia-sa.json file
working-directory: ./history-service
run: |
touch vizia-sa.json
echo "${{ secrets.VIZIA_SERVICE_ACCOUNT }}" >> vizia-sa.json
- name: Create Google Services JSON File
env:
VIZIA_SERVICE_ACCOUNT: ${{ secrets.VIZIA_SERVICE_ACCOUNT }}
run: echo $VIZIA_SERVICE_ACCOUNT | base64 -di > ./history-service/vizia-sa.json

- name: Create app.yaml file
working-directory: ./history-service
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/user-auth-service-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Create vizia-sa.json file
working-directory: ./user-auth-service
run: |
touch vizia-sa.json
echo "${{ secrets.VIZIA_SERVICE_ACCOUNT }}" >> vizia-sa.json
- name: Create Google Services JSON File
env:
VIZIA_SERVICE_ACCOUNT: ${{ secrets.VIZIA_SERVICE_ACCOUNT }}
run: echo $VIZIA_SERVICE_ACCOUNT | base64 -di > ./user-auth-service/vizia-sa.json

- name: Create app.yaml file
working-directory: ./user-auth-service
Expand Down

0 comments on commit e4ef04e

Please sign in to comment.