mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-20 19:51:13 +10:00
fix: add fix for aarch64 build and start working on github upload
This commit is contained in:
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
@ -88,7 +88,8 @@ jobs:
|
|||||||
- name: install frontend dependencies
|
- name: install frontend dependencies
|
||||||
run: yarn install # change this to npm, pnpm or bun depending on which one you use.
|
run: yarn install # change this to npm, pnpm or bun depending on which one you use.
|
||||||
|
|
||||||
- uses: tauri-apps/tauri-action@v0
|
- name: build
|
||||||
|
uses: tauri-apps/tauri-action@v0
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
|
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
|
||||||
@ -105,4 +106,6 @@ jobs:
|
|||||||
- name: Bundle AppImage
|
- name: Bundle AppImage
|
||||||
if: matrix.platform == 'ubuntu-22.04' || matrix.platform == 'ubuntu-22.04-arm'
|
if: matrix.platform == 'ubuntu-22.04' || matrix.platform == 'ubuntu-22.04-arm'
|
||||||
run: |
|
run: |
|
||||||
|
export TAG v${{ steps.build.appVersion }}
|
||||||
|
echo "Bundling $TAG"
|
||||||
./build_appimage.sh --nobuild
|
./build_appimage.sh --nobuild
|
||||||
|
|||||||
@ -5,7 +5,7 @@ set -e
|
|||||||
|
|
||||||
arch="$(uname -m)"
|
arch="$(uname -m)"
|
||||||
git_dir="$PWD"
|
git_dir="$PWD"
|
||||||
target_dir="$git_dir/src-tauri/target/"
|
target_dir="$git_dir/src-tauri/target"
|
||||||
appimage_dir="$git_dir/build/appimage"
|
appimage_dir="$git_dir/build/appimage"
|
||||||
appdir="$appimage_dir/drop-app.d"
|
appdir="$appimage_dir/drop-app.d"
|
||||||
|
|
||||||
@ -40,3 +40,7 @@ wget -O $appimage_dir/appimagetool https://github.com/AppImage/AppImageKit/relea
|
|||||||
cd $appimage_dir
|
cd $appimage_dir
|
||||||
chmod u+x appimagetool
|
chmod u+x appimagetool
|
||||||
./appimagetool $appdir
|
./appimagetool $appdir
|
||||||
|
|
||||||
|
ls "$appimage_dir/*.AppImage"
|
||||||
|
|
||||||
|
echo "v__VERSION__"
|
||||||
Reference in New Issue
Block a user