Skip to content

Commit

Permalink
Attempt to add an appimage build script to github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnoyingRain5 committed Nov 29, 2023
1 parent d272f8c commit 3f5e4a2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,26 @@ jobs:
with:
name: CrankItUp-Linux
path: CrankItUp.Desktop/bin/Debug/net6.0/*

build-appimage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Prepare
run: chmod +x ./publish-appimage
- name: Build
run: ./CrankItUp.Desktop/publish-appimage
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: CrankItUp-Appimage
path: CrankItUp.Desktop/Appimages/CrankItUp-x86_64.AppImage

build-windows:
runs-on: windows-latest
Expand Down

0 comments on commit 3f5e4a2

Please sign in to comment.