Skip to content

Commit

Permalink
feat: add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaomaoniu committed Apr 14, 2024
1 parent fc54c78 commit dd9737c
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Setup Python
description: Setup Python

inputs:
python-version:
description: Python version
required: false
default: "3.10"

runs:
using: "composite"
steps:
- uses: pdm-project/setup-pdm@v3
name: Setup PDM
with:
python-version: ${{ inputs.python-version }}
architecture: "x64"
cache: true

- run: pdm sync -G:all
shell: bash
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release

on:
push:
tags:
- v*

jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3

- name: Setup Python environment
uses: ./.github/actions/setup-python

- 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: Publish Package
run: |
pdm publish
gh release upload --clobber ${{ steps.version.outputs.TAG_NAME }} dist/*.tar.gz dist/*.whl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion bestdori/render/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ def render(chart: Chart, config: Config = get_config()) -> Image.Image:
return utils.paste(bg, result, (0, 0))


__all__ = ["render", "config"]
__all__ = ["render"]
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ license = {text = "MIT"}
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm.build]
includes = ["bestdori"]

[tool.pdm]
distribution = true

0 comments on commit dd9737c

Please sign in to comment.