forked from robiot/xclicker
-
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.
Update .desktop location in Makefile
- Loading branch information
Showing
2 changed files
with
13 additions
and
13 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
- "v*" | ||
|
||
name: Create Release | ||
|
||
|
@@ -16,19 +16,19 @@ jobs: | |
|
||
- name: Build x64 | ||
run: | | ||
mkdir -p outputs | ||
mkdir -p outputs | ||
make deb TARGET_ARCH=amd64 | ||
cp pkg/deb/*.deb outputs/ | ||
make appimg TARGET_ARCH=amd64 | ||
cp pkg/AppImage/*.AppImage outputs/ | ||
make deb TARGET_ARCH=amd64 | ||
cp pkg/deb/*.deb outputs/ | ||
make appimg TARGET_ARCH=amd64 | ||
cp pkg/AppImage/*.AppImage outputs/ | ||
- uses: actions/upload-artifact@master | ||
with: | ||
name: output-artifact | ||
path: outputs | ||
|
||
build: | ||
name: Build for ARM and Create Release | ||
runs-on: ubuntu-18.04 | ||
|
@@ -41,7 +41,7 @@ jobs: | |
with: | ||
name: output-artifact | ||
path: outputs | ||
|
||
- name: Build ARM | ||
uses: uraimo/[email protected] | ||
with: | ||
|
@@ -71,7 +71,7 @@ jobs: | |
run: | | ||
make deb TARGET_ARCH=armhf | ||
cp pkg/deb/*.deb outputs/ | ||
make appimg TARGET_ARCH=armhf | ||
cp pkg/AppImage/*.AppImage outputs/ | ||
|
@@ -106,10 +106,10 @@ jobs: | |
rm -rf build/ | ||
make deb TARGET_ARCH=aarch64 | ||
cp pkg/deb/*.deb outputs/ | ||
make appimg TARGET_ARCH=aarch64 | ||
cp pkg/AppImage/*.AppImage outputs/ | ||
- name: Create Release | ||
uses: softprops/[email protected] | ||
env: | ||
|
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