Skip to content

Commit

Permalink
fix: add checkout code
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin9foong committed Nov 28, 2024
1 parent b7cb405 commit 2db13da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
steps:
# checks out the latest code from the repo branch into the runner environment
# dont need this as done directly by buildkit
# - name: Checkout code
# uses: actions/checkout@v4
# need this for the frontend build env vars
- name: Checkout code
uses: actions/checkout@v4
- name: Setup secrets for datadog sourcemap deployment
run: |
echo "APP_VERSION=$(jq -r .version package.json)-$(echo ${GITHUB_REF##*/})-$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_ENV
Expand Down Expand Up @@ -78,7 +79,7 @@ jobs:
uses: docker/build-push-action@v6
with:
# not needed since done by Buildkit which uses git context
# context: .
context: .
file: Dockerfile.production
push: true
tags: |
Expand Down

0 comments on commit 2db13da

Please sign in to comment.