1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2026-04-02 11:05:08 +08:00

Delete .github/release.yaml

This commit is contained in:
涵曦
2023-10-14 21:19:29 +08:00
committed by GitHub
parent dad16abcd3
commit b189bc8c6b

42
.github/release.yaml vendored
View File

@@ -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}}