Skip to content

Commit

Permalink
Fix templating syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ScriptSmith committed Oct 6, 2023
1 parent 2a8436f commit 5962996
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ jobs:
- name: Deploy base stack
working-directory: deployment
run: |
echo "::add-mask::{{ secrets.ACCOUNT_ID }}"
echo "::add-mask::85464"
echo "::add-mask::${{ secrets.ACCOUNT_ID }}"
cdk deploy TranscriptionStack
- name: Save FrontEndEnvironment to file
working-directory: frontend
Expand All @@ -64,8 +63,7 @@ jobs:
- name: Build frontend
working-directory: frontend
run: |
echo "::add-mask::{{ secrets.ACCOUNT_ID }}"
echo "::add-mask::85464"
echo "::add-mask::${{ secrets.ACCOUNT_ID }}"
yarn build
- uses: aws-actions/configure-aws-credentials@v4
with:
Expand All @@ -76,6 +74,5 @@ jobs:
- name: Deploy frontend stack
working-directory: deployment
run: |
echo "::add-mask::{{ secrets.ACCOUNT_ID }}"
echo "::add-mask::85464"
echo "::add-mask::${{ secrets.ACCOUNT_ID }}"
cdk deploy TranscriptionFrontEndStack

0 comments on commit 5962996

Please sign in to comment.