-
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.
- Loading branch information
1 parent
abcf0f7
commit 260190a
Showing
1 changed file
with
28 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Build AppImages | ||
|
||
on: | ||
push: | ||
branches: [ "cd" ] | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-x86_64: | ||
runs-on: | ||
- ubuntu-latest | ||
- x64 | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: install dependencies | ||
run: | | ||
apt-get update | ||
apt-get install -y wget openjdk-21-jdk-headless nodejs fuse | ||
wget -qO- https://get.pnpm.io/install.sh | sh - | ||
- name: run build | ||
run: | | ||
cd $GITHUB_WORKSPACE/Appimage | ||
./build.sh |