Skip to content

Commit 8e52cb2

Browse files
committed
Use relative paths to avoid path mangling.
1 parent 593090f commit 8e52cb2

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/devel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
#
3838
- name: Compute version info
3939
shell: bash
40-
run: python "${{ github.workspace }}/actions/update_recipe.py"
40+
run: python actions/update_recipe.py
4141
#
4242
- name: Create sdist
4343
run: pip install build && python -m build --sdist && mv dist/*.tar.gz ghostly-source.tar.gz
@@ -64,7 +64,7 @@ jobs:
6464
#
6565
- name: Upload package
6666
shell: bash
67-
run: python "${{ github.workspace }}/actions/upload_package.py"
67+
run: python actions/upload_package.py
6868
env:
6969
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
7070
ANACONDA_LABEL: dev

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
#
4242
- name: Compute version info
4343
shell: bash
44-
run: python "${{ github.workspace }}/actions/update_recipe.py"
44+
run: python actions/update_recipe.py
4545
#
4646
- name: Create sdist
4747
run: pip install build && python -m build --sdist && mv dist/*.tar.gz ghostly-source.tar.gz
@@ -68,7 +68,7 @@ jobs:
6868
#
6969
- name: Upload package
7070
shell: bash
71-
run: python "${{ github.workspace }}/actions/upload_package.py"
71+
run: python actions/upload_package.py
7272
env:
7373
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
7474
ANACONDA_LABEL: main

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
#
4141
- name: Compute version info
4242
shell: bash
43-
run: python "${{ github.workspace }}/actions/update_recipe.py"
43+
run: python actions/update_recipe.py
4444
#
4545
- name: Create sdist
4646
run: pip install build && python -m build --sdist && mv dist/*.tar.gz ghostly-source.tar.gz

0 commit comments

Comments
 (0)