We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bca5720 commit 4e09826Copy full SHA for 4e09826
.github/workflows/aws-sam-cicd.yml
@@ -35,7 +35,7 @@ jobs:
35
runs-on: ubuntu-latest
36
steps:
37
- name: Create template.yml
38
- run: echo "${{ secrets.AWS_SAM_TEMPLATE_YAML }}" > template.yml
+ run: echo "${{ secrets.AWS_SAM_TEMPLATE_YAML }}" > ${{ github.workspace }}/template.yml
39
- uses: actions/checkout@v3
40
- uses: actions/setup-python@v3
41
with:
@@ -51,4 +51,4 @@ jobs:
51
python -m pip install --upgrade pip
52
pip install -r requirements.txt
53
- 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
+ - run: sam deploy --no-fail-on-empty-changeset --stack-name ome-restaurant-app --template-file ${{ github.workspace }}/template.yml
0 commit comments