Almost done!
Some checks are pending
CI/CD / build (push) Waiting to run

This commit is contained in:
Felipe Cotti 2024-11-30 04:06:36 -03:00
parent 8ed85ba432
commit 879d04c02d

View file

@ -34,9 +34,13 @@ jobs:
run: dotnet publish src/Plpext/Plpext.UI/Plpext.UI.csproj -c Release -r win-x64 -o publish
- name: Vpk pack
run: vpk pack --mainExe=Plpext.exe --packId=Plpext --packVersion=1.0.0 --packDir=publish -o build/win
run: vpk pack --mainExe=Plpext.exe --packId=Plpext --packVersion=1.0.${{ github.run_number }} --packDir=publish -o build/win
- name: Upload artifact
uses: softprops/action-gh-release@v2
with:
tag_name: v1.0.${{ github.run_number }}
name: Release v1.0.${{ github.run_number }}
files: build/win/Plpext-win-Setup.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}