-
Notifications
You must be signed in to change notification settings - Fork 27
47 lines (45 loc) · 1.45 KB
/
linux_sdist.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Linux sdist
on:
release:
types:
- created
jobs:
linux:
name: Linux Py${{ matrix.PYTHON_VERSION }}
runs-on: ubuntu-latest
env:
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUNNER_OS: "linux"
strategy:
fail-fast: false
matrix:
PYTHON_VERSION: ["3.11"]
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Install latest Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: x86_64-pc-windows-msvc
override: true
components: rustfmt, clippy
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
activate-environment: test
channels: conda-forge,defaults
python-version: ${{ matrix.PYTHON_VERSION }}
- name: Install twine/maturin
shell: bash -l {0}
run: pip install twine maturin
- name: Build sdist distribution
shell: bash -l {0}
run: maturin sdist
- name: Upload to PyPi
shell: bash -l {0}
env:
TWINE_PASSWORD: ${{secrets.MATURIN_PASSWORD}}
TWINE_USERNAME: ${{secrets.MATURIN_USERNAME}}
run: twine upload target/wheels/*.tar.gz