Skip to content

Commit

Permalink
Merge pull request #170 from kilowatts-io/fix-github
Browse files Browse the repository at this point in the history
add working directory
  • Loading branch information
BenjaminWatts committed Feb 20, 2024
2 parents 991fecb + 0819e38 commit 536abb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Change to Backend Directory
run: cd backend

- name: Setup Node.js
uses: actions/setup-node@v2
with:
Expand All @@ -23,9 +20,11 @@ jobs:

- name: Install Dependencies
run: yarn install
working-directory: backend

- name: Install AWS CDK
run: yarn global add aws-cdk
working-directory: backend

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
Expand All @@ -36,6 +35,7 @@ jobs:

- name: Deploy CDK App
run: cdk deploy --require-approval never
working-directory: backend
env:
SENTRY_ENVIRONMENT: ${{ secrets.SENTRY_ENVIRONMENT }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
Expand Down

0 comments on commit 536abb2

Please sign in to comment.