Skip to content

Commit 94833e6

Browse files
committed
linux fix
1 parent 8521f60 commit 94833e6

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/build_linux.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ jobs:
3636

3737
- name: Build and Publish
3838
run: |
39-
dotnet publish -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o ${{github.workspace}}/publish/win-x64
40-
vpk pack --packId Aniki --packVersion ${{ inputs.version }} --packDir ./publish/win-x64 --mainExe Aniki
41-
vpk upload github --repoUrl https://github.com/TrueTheos/Aniki --token ${{ secrets.YOUR_PAT_TOKEN }} --releaseName ${{ inputs.version }}-linux
39+
dotnet publish -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o ${{ github.workspace }}/publish/linux-x64
40+
41+
vpk pack --packId Aniki --packVersion ${{ inputs.version }} \
42+
--packDir ./publish/linux-x64 \
43+
--mainExe Aniki \
44+
--channel linux
45+
46+
vpk upload github --repoUrl https://github.com/TrueTheos/Aniki \
47+
--token ${{ secrets.YOUR_PAT_TOKEN }} \
48+
--releaseName ${{ inputs.version }}-linux \
49+
--channel linux

0 commit comments

Comments
 (0)