Skip to content

Commit

Permalink
feat: checkout code before running workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Aug 7, 2024
1 parent 560fd7b commit 2e7ebbf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy-service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@ jobs:
exit 1
fi
- name: Checkout code
if: ${{ inputs.service != 'web' && inputs.deploy-type == 'binary' }}
uses: actions/checkout@v4

- name: Deploy service
if: ${{ inputs.service != 'web' && inputs.deploy-type == 'binary' }}
run: component/toolbox/awsi.sh upgrade -p pull-from-env -r us-east-1 -a y -s ${{ inputs.service }}
run: |
pwd
component/toolbox/awsi.sh upgrade -p pull-from-env -r us-east-1 -a y -s ${{ inputs.service }}

0 comments on commit 2e7ebbf

Please sign in to comment.