Skip to content

Commit 4e09826

Browse files
authored
Update aws-sam-cicd.yml
1 parent bca5720 commit 4e09826

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/aws-sam-cicd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- name: Create template.yml
38-
run: echo "${{ secrets.AWS_SAM_TEMPLATE_YAML }}" > template.yml
38+
run: echo "${{ secrets.AWS_SAM_TEMPLATE_YAML }}" > ${{ github.workspace }}/template.yml
3939
- uses: actions/checkout@v3
4040
- uses: actions/setup-python@v3
4141
with:
@@ -51,4 +51,4 @@ jobs:
5151
python -m pip install --upgrade pip
5252
pip install -r requirements.txt
5353
- run: sam build --template-file template.yml
54-
- run: sam deploy --no-fail-on-empty-changeset --stack-name ome-restaurant-app --template-file template.yml
54+
- run: sam deploy --no-fail-on-empty-changeset --stack-name ome-restaurant-app --template-file ${{ github.workspace }}/template.yml

0 commit comments

Comments
 (0)