Skip to content

Commit

Permalink
👷 add release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MingxuanGame committed Oct 4, 2023
1 parent f6d8016 commit 4b39952
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Release

on:
push:
tags:
- v*

jobs:
release:
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
contents: write
steps:
- uses: actions/checkout@v3

- uses: pdm-project/setup-pdm@v3
with:
python-version: "3.10"
cache: true
cache-dependency-path: ./pdm.lock

- name: Install dependencies
run: pdm sync
shell: bash

- name: Get version
id: version
run: |
echo "VERSION=$(pdm show --version)" >> $GITHUB_OUTPUT
echo "TAG_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Check Version
if: steps.version.outputs.VERSION != steps.version.outputs.TAG_VERSION
run: exit 1

- name: Build and Publish package
run: |
pdm publish
gh release upload --clobber ${{ steps.version.outputs.TAG_NAME }} dist/*.tar.gz dist/*.whl
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ dependencies = [
requires-python = ">=3.8"
readme = "README.md"
dynamic = ["version"]
keywords = ["onebot", "libonebot", "onebot12"]
license = { text = "MIT" }

[build-system]
Expand Down

0 comments on commit 4b39952

Please sign in to comment.