From 280543660aaf21d467ba7f6ac282699234e1f437 Mon Sep 17 00:00:00 2001 From: 283375 Date: Sun, 31 Mar 2024 23:39:32 +0800 Subject: [PATCH] ci: build package using github actions --- .github/workflows/build-and-draft-release.yml | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/build-and-draft-release.yml diff --git a/.github/workflows/build-and-draft-release.yml b/.github/workflows/build-and-draft-release.yml new file mode 100644 index 0000000..aa978c5 --- /dev/null +++ b/.github/workflows/build-and-draft-release.yml @@ -0,0 +1,40 @@ +name: "Build and draft a release" + +on: + workflow_dispatch: + push: + tags: + - "v[0-9]+.[0-9]+.[0-9]+" + +permissions: + contents: write + discussions: write + +jobs: + build-and-draft-release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up Python environment + uses: actions/setup-python@v5 + with: + python-version: "3.x" + + - name: Build package + run: | + pip install build + python -m build + + - name: Draft a release + uses: softprops/action-gh-release@v2 + with: + discussion_category_name: New releases + draft: true + generate_release_notes: true + files: | + dist/arcaea_offline-${{ github.ref_name }}*.whl + dist/arcaea-offline-${{ github.ref_name }}.tar.gz