fix duplicate upload step
This commit is contained in:
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
@ -35,9 +35,12 @@ jobs:
|
|||||||
- name: build
|
- name: build
|
||||||
run: pyinstaller --onefile main.py --name ${{ matrix.output }}
|
run: pyinstaller --onefile main.py --name ${{ matrix.output }}
|
||||||
|
|
||||||
|
|
||||||
- name: upload to release
|
- name: upload to release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: dist/${{ matrix.output }}
|
files: dist/${{ matrix.output }}
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
Reference in New Issue
Block a user