Skip to content

Version refactor rustyfresh-v1.0.0 🚀 #5

Version refactor rustyfresh-v1.0.0 🚀

Version refactor rustyfresh-v1.0.0 🚀 #5

Workflow file for this run

name: Publish to PyPI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 🚚 Checkout code
uses: actions/checkout@v3
- name: 🐍 Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: 🛠️ Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: 📦 Install maturin
run: pip install maturin
- name: 🚀 Publish to PyPI
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
run: maturin publish