Skip to content

Fix/fault_orientations (#180) #10

Fix/fault_orientations (#180)

Fix/fault_orientations (#180) #10

Workflow file for this run

name: Deploy to PYPI
on:
workflow_dispatch:
jobs:
sdist:
name: Build sdist
<<<<<<< HEAD

Check failure on line 9 in .github/workflows/pypi.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pypi.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
<<<<<<< HEAD
runs-on: ubuntu-latest
=======
runs-on: ubuntu-24.04
>>>>>>> 7978841 (feat: v3.2 (#153))
=======
runs-on: ubuntu-latest
>>>>>>> b33532b (fix: include dependencies in site-packages - issue #169 (#170))
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build sdist
run: python -m build --sdist
- uses: actions/upload-artifact@v4
with:
name: dist
path: ./dist/*.tar.gz
publish:
name: Publish wheels to pypi
<<<<<<< HEAD
<<<<<<< HEAD
runs-on: ubuntu-latest
=======
runs-on: ubuntu-24.04
>>>>>>> 7978841 (feat: v3.2 (#153))
=======
runs-on: ubuntu-latest
>>>>>>> b33532b (fix: include dependencies in site-packages - issue #169 (#170))
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
needs: sdist
steps:
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: copy to wheelhouse
run: |
# cp -r wheelhouse/*/*.whl dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
verbose: true
packages-dir: dist/