diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 39f827d..c6b36d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,6 +60,15 @@ jobs: uses: ncipollo/release-action@v1 with: allowUpdates: true - tag: Current - artifacts: ./out/*.exe + tag: PyinstallerBuilds + 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 }}