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

Release

Release #45

Workflow file for this run

name:Release
on:
schedule:
-cron:'0 0 28 * *'# Monthly auto-release
workflow_dispatch:# Manual trigger for quick fixes
jobs:
release:
if:github.repository == 'python-gitlab/python-gitlab'
runs-on:ubuntu-latest
concurrency:release
permissions:
id-token:write
environment:pypi.org
steps:
-uses:actions/checkout@v4.1.7
with:
fetch-depth:0
token:${{ secrets.RELEASE_GITHUB_TOKEN }}
-name:Python Semantic Release
id:release
uses:python-semantic-release/python-semantic-release@v9.8.8
with:
github_token:${{ secrets.RELEASE_GITHUB_TOKEN }}
-name:Publish package distributions to PyPI
uses:pypa/gh-action-pypi-publish@release/v1
# NOTE: DO NOT wrap the conditional in ${{ }} as it will always evaluate to true.
# See https://github.com/actions/runner/issues/1173
if:steps.release.outputs.released == 'true'
-name:Publish package distributions to GitHub Releases
uses:python-semantic-release/upload-to-gh-release@fa2bbbf8e61069551abd513fdc5627e14c8637c7# v9.8.8
if:steps.release.outputs.released == 'true'
with:
github_token:${{ secrets.GITHUB_TOKEN }}

[8]ページ先頭

©2009-2025 Movatter.jp