Skip to content

amp-rsl-rl 2.2.3

amp-rsl-rl 2.2.3 #22

Workflow file for this run

name: 🚀 Publish to PyPI on release
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🐍 Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: 📦 Install build dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: 🏗️ Build package
run: python -m build
- name: 🚀 Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}