PyWinPTY release v2.0.14 #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |