-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Download appimagetool and run the publish command correctly
- Loading branch information
1 parent
81a76c6
commit a8e4a87
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,10 +40,12 @@ jobs: | |
dotnet-version: 6.0.x | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
- name: Download appimagetool | ||
run: cd CrankitUp.Desktop && wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" | ||
- name: Prepare | ||
run: chmod +x ./CrankItUp.Desktop/publish-appimage | ||
run: chmod +x publish-appimage && chmod a+x appimagetool-x86_64.AppImage | ||
- name: Build | ||
run: cd CrankItUp.Desktop && publish-appimage -y | ||
run: ./publish-appimage -y | ||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
with: | ||
|