From b189bc8c6b710296dd22a7cb7d427ddf205c2d49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B6=B5=E6=9B=A6?= Date: Sat, 14 Oct 2023 21:19:29 +0800 Subject: [PATCH] Delete .github/release.yaml --- .github/release.yaml | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 .github/release.yaml diff --git a/.github/release.yaml b/.github/release.yaml deleted file mode 100644 index 9655573..0000000 --- a/.github/release.yaml +++ /dev/null @@ -1,42 +0,0 @@ -name: Release and Build Docker Image - -permissions: - contents: write - -on: - push: - tags: - - "*" - -jobs: - release-pypi: - name: Build and Release PyPI - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - uses: actions/setup-python@v4 - with: - python-version: "3.10" - - - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Build artifacts - run: | - pip install build - python -m build - - - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.PYPI_API_TOKEN }} - - - run: npx changelogithub - continue-on-error: true - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} -