Skip to content

Commit f98357d

Browse files
committed
fix: add absolute prefix to custom checkout locations in hopes of fixing issue with reusable action not being found in CICD
1 parent 85d5b9e commit f98357d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/merge-demo-feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v4
2525
with:
2626
repository: ${{ github.repository }}
27-
path: cookiecutter-robust-python
27+
path: "${{ github.workspace }}/cookiecutter-robust-python"
2828

2929
- name: Sync Demo
3030
uses: "./.github/workflows/update-demo.yml"

.github/workflows/sync-demos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020
with:
2121
repository: ${{ github.repository }}
22-
path: cookiecutter-robust-python
22+
path: "${{ github.workspace }}/cookiecutter-robust-python"
2323

2424
- name: Update Demo
2525
uses: "./.github/workflows/update-demo.yml"

0 commit comments

Comments
 (0)