Skip to content

Commit

Permalink
fix build upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Mar 29, 2024
1 parent 55eac2a commit c4559ac
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: artifacts
path: ${{ steps.create-release.outputs.artifacts }}
path: |
src-tauri/target/release/**/*.exe
src-tauri/target/release/**/*.msi
src-tauri/target/release/**/*.deb
src-tauri/target/release/**/*.AppImage
src-tauri/target/release/**/*.dmg
!src-tauri/target/release/deps
!src-tauri/target/release/build
- name: Get current commit ID
id: get_commit
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ sudo reboot
-->

<details><summary>Alternatively, but not recommended, you can also use the <code>.AppImage</code> file</summary>
<details><summary>Alternatively, you can use the <code>.AppImage</code> file</summary>

This is not recommended, as the apps takes longer to startup than with the flatpak, and not all dependencies are included to auto-paste.
This is not recommended, as the app takes slightly longer to startup than with flatpak, and not all dependencies are included to auto-paste.

Run this command to download the `.AppImage`, and create a desktop file for it:

Expand Down
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ if [ -z $1 ]; then
echo "⏳️ Downloading Emoji Mart AppImage and its desktop file..."
curl -L -o ~/.local/bin/EmojiMart.AppImage https://github.com/vemonet/EmojiMart/releases/download/v$VERSION/emoji-mart_$VERSION\_amd64.AppImage
curl -L -o ~/.local/share/applications/EmojiMart.desktop "https://github.com/vemonet/EmojiMart/blob/main/resources/EmojiMart.desktop?raw=true"
chmod +x ~/.local/bin/EmojiMart.AppImage
# cp ~/.local/share/applications/EmojiMart.desktop ~/.config/autostart/
else
echo "📂 Installing from local"
Expand Down

0 comments on commit c4559ac

Please sign in to comment.