Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

v2.11.1.post1

v2.11.1.post1 #31

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name:Upload Python Package
on:
release:
types:[created]
jobs:
deploy:
runs-on:ubuntu-latest
steps:
-uses:actions/checkout@v5
-name:Set up Python
uses:actions/setup-python@v6
with:
python-version:'3.x'
-name:Install pypa/build
run:>-
python -m
pip install
build
--user
-name:Build a binary wheel and a source tarball
run:>-
python -m
build
--sdist
--wheel
--outdir dist/
.
-name:Publish distribution 📦 to PyPI
if:startsWith(github.ref, 'refs/tags')
uses:pypa/gh-action-pypi-publish@release/v1
with:
password:${{ secrets.PYPI_API_TOKEN }}

[8]ページ先頭

©2009-2025 Movatter.jp