WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

v0.0.2

v0.0.2 #3

Workflow file for this run

name: 📦 Publish to PyPI
on:
release:
types:
- published
jobs:
publish:
name: 📦 Publish to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v5
- name: 🐍 Setup Python
uses: actions/setup-python@v6
with:
python-version: 3.11
- name: 📦 Install build dependencies
run: python -m pip install build
- name: 🏗️ Build package
run: python -m build
- name: 📤 Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1