Skip to content

Commit 605922b

Browse files
committed
need conda's python
1 parent 1cbf338 commit 605922b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/environment.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ dependencies:
66
- numpy
77
- pdal
88
- compilers
9+
- python
10+
- pip

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
url: https://pypi.org/p/pdal-plugins
1919
permissions:
2020
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
21+
strategy:
22+
fail-fast: true
23+
2124
steps:
2225
- uses: actions/checkout@v3
2326
- name: Setup micromamba
@@ -31,9 +34,11 @@ jobs:
3134
environment-file: .github/environment.yml
3235

3336
- name: Install dependencies
37+
shell: bash -l {0}
3438
run: |
3539
python -m pip install build pipx twine
3640
pipx run build --sdist -Ccmake.define.CMAKE_BUILD_WITH_INSTALL_RPATH=ON
41+
3742
- name: Publish package distributions to PyPI
3843
if: github.event_name == 'release' && github.event.action == 'published'
3944
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)