自动构建发布

This commit is contained in:
星外之神 2022-05-21 19:06:06 +08:00
parent 2a294d0593
commit c6689eca7e

View File

@ -60,6 +60,15 @@ jobs:
uses: ncipollo/release-action@v1 uses: ncipollo/release-action@v1
with: with:
allowUpdates: true allowUpdates: true
tag: Current tag: PyinstallerBuilds
artifacts: ./out/*.exe artifacts: ./out/*pyinstaller*.exe
token: ${{ secrets.GITHUB_TOKEN }}
# release处发布单文件可执行版exe
- name: Release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
tag: Current
artifacts: ./out/*nuitka*.exe
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}