更改非法tag名称

This commit is contained in:
星外之神 2022-05-20 18:53:31 +08:00
parent 27d6236003
commit 57974043d2

View File

@ -36,7 +36,7 @@ jobs:
- name: Build pypvz package
run: |
echo y | python -m nuitka --standalone --onefile --show-progress --show-memory --output-dir=out --windows-icon-from-ico=pypvz.ico --include-data-dir=resources=resources --include-data-file=c:\hostedtoolcache\windows\python\3.10.4\x64\lib\site-packages\pygame\libogg-0.dll=libogg-0.dll --include-data-file=c:\hostedtoolcache\windows\python\3.10.4\x64\lib\site-packages\pygame\libopus-0.dll=libopus-0.dll --include-data-file=c:\hostedtoolcache\windows\python\3.10.4\x64\lib\site-packages\pygame\libopusfile-0.dll=libopusfile-0.dll --include-data-file=c:\hostedtoolcache\windows\python\3.10.4\x64\lib\site-packages\pygame\libvorbisfile-3.dll=libvorbisfile-3.dll --include-data-file=c:\hostedtoolcache\windows\python\3.10.4\x64\lib\site-packages\pygame\libvorbis-0.dll=libvorbis-0.dll --windows-disable-console main.py
mv ./out/main.exe ./out/pypvz.exe
mv ./out/main.exe ./out/pypvz-windows-msvc-x64.exe
- name: "Upload binaries"
uses: actions/upload-artifact@v2
@ -56,6 +56,6 @@ jobs:
- uses: ncipollo/release-action@v1
with:
allowUpdates: true
tag: Current(Compiled by MSVC)
tag: Current
artifacts: C:/_/artifacts/*/*.exe
token: ${{ secrets.GITHUB_TOKEN }}