Skip to content

Commit 6097e9c

Browse files
committed
fix: set references to python version file as absolute positions due to multiple checkout oddities arising
1 parent 13bf965 commit 6097e9c

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
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set up Python
5050
uses: actions/setup-python@v5
5151
with:
52-
python-version-file: ".github/workflows/.python-version"
52+
python-version-file: "${{ github.workspace }}/cookiecutter-robust-python/.github/workflows/.python-version"
5353

5454
- name: Merge Demo Feature PR into Develop
5555
working-directory: "${{ github.workspace }}/${{ matrix.demo_name }}"

.github/workflows/update-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Python
3636
uses: actions/setup-python@v5
3737
with:
38-
python-version-file: ".github/workflows/.python-version"
38+
python-version-file: "${{ github.workspace }}/cookiecutter-robust-python/.github/workflows/.python-version"
3939

4040
- name: Update Demo
4141
working-directory: "${{ github.workspace }}/cookiecutter-robust-python"

0 commit comments

Comments
 (0)