Skip to content

Commit

Permalink
Update .desktop location in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
robiot committed Jun 6, 2022
1 parent cc7eda2 commit 5d44c05
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
tags:
- 'v*'
- "v*"

name: Create Release

Expand All @@ -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
Expand All @@ -41,7 +41,7 @@ jobs:
with:
name: output-artifact
path: outputs

- name: Build ARM
uses: uraimo/[email protected]
with:
Expand Down Expand Up @@ -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/
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PKG_DIR = pkg

BINNAME = xclicker
TARGET = build/debug/src/${BINNAME}
DESKFILE = xclicker.desktop
DESKFILE = assets/xclicker.desktop

debpkgdir="./${PKG_DIR}/deb/package"
appimgdir="${PKG_DIR}/AppImage/XClicker.AppDir"
Expand Down

0 comments on commit 5d44c05

Please sign in to comment.