From 464bba2b2f3b87a30ded0de9acd4ea62566a4463 Mon Sep 17 00:00:00 2001 From: 苏向夜 Date: Wed, 6 Mar 2024 14:34:25 +0800 Subject: ci(release): add release workflows --- .github/workflows/publish.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/publish.yml (limited to '.github/workflows/publish.yml') diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..852333a --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,28 @@ +name: Publish + +on: + push: + tags: + - "*" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + permissions: + id-token: write + steps: + - name: Checkout + uses: actions/checkout@v4 + + - uses: pdm-project/setup-pdm@v4 + name: Setup PDM + with: + python-version: 3.9 + cache: true + + - name: Install dependencies + run: pdm install + + - run: pdm publish + shell: bash -- cgit v1.2.3-70-g09d2