Skip to content

Commit

Permalink
fix build id for production
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasey committed Oct 24, 2024
1 parent 7157bf0 commit 701fe45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/deploy_production/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ runs:
- name: Calculate Build ID
shell: bash
run: |
build_id=${{ hashFiles('apps/${{ inputs.app_name }}/*.ts', 'apps/${{ inputs.app_name }}/*.tsx') }}
echo "\nREACT_APP_BUILD_ID=$build_id" >> ./.ebstalk.apps.env/${{ inputs.app_name }}.env
build_id=${{ hashFiles(format('apps/{0}/*.ts', inputs.app_name), format('apps/{0}/*.tsx', inputs.app_name)) }}
echo $'\nREACT_APP_BUILD_ID='$build_id >> ./.ebstalk.apps.env/${{ inputs.app_name }}.env
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down

0 comments on commit 701fe45

Please sign in to comment.