Skip to content

Commit

Permalink
Merge pull request #8 from Haven-Code/act
Browse files Browse the repository at this point in the history
chore: add keycloak secret to CI
  • Loading branch information
phuchptty authored Feb 10, 2024
2 parents 3f3563c + ad82ab7 commit e96aa47
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/prod-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ jobs:
/sst/kma-score-serverless/prod/Secret/DB_NAME/value=DB_NAME,
/sst/kma-score-serverless/prod/Secret/DB_PASSWORD/value=DB_PASSWORD,
/sst/kma-score-serverless/prod/Secret/DB_PORT/value=DB_PORT,
/sst/kma-score-serverless/prod/Secret/DB_USERNAME/value=DB_USERNAME"
/sst/kma-score-serverless/prod/Secret/DB_USERNAME/value=DB_USERNAME
/sst/kma-score-serverless/prod/Secret/KC_URL/value=KC_URL
/sst/kma-score-serverless/prod/Secret/KC_REALM/value=KC_REALM
/sst/kma-score-serverless/prod/Secret/KC_CLIENT_ID/value=KC_CLIENT_ID
/sst/kma-score-serverless/prod/Secret/KC_CLIENT_SECRET/value=KC_CLIENT_SECRET"
withDecryption: "true"

- name: Setup Node.js
Expand All @@ -44,20 +48,20 @@ jobs:
with:
version: 8
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm i --frozen-lockfile

Expand Down

0 comments on commit e96aa47

Please sign in to comment.