build: Installed appimage deps
This commit is contained in:
parent
4ec1e24dfb
commit
31b2bb51cc
2 changed files with 15 additions and 1 deletions
|
|
@ -11,6 +11,12 @@ jobs:
|
|||
container:
|
||||
image: node:20
|
||||
steps:
|
||||
#fix for runner not having Git LFS
|
||||
- name: Initialize LFS
|
||||
run: |
|
||||
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
|
||||
sudo apt-get install git-lfs
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
|
|
@ -40,6 +46,10 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
|
||||
- name: Install 7zip (minimal)
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt-get update && sudo apt-get install -y p7zip
|
||||
|
||||
- name: Build Canary
|
||||
run: bun run package:linux
|
||||
|
||||
|
|
|
|||
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -62,6 +62,10 @@ jobs:
|
|||
env:
|
||||
BUILD_DIR: ./build/${{ runner.os }}
|
||||
|
||||
- name: Install 7zip (minimal)
|
||||
if: runner.os == 'Linux'
|
||||
run: sudo apt-get update && sudo apt-get install -y p7zip
|
||||
|
||||
- name: Upload Linux Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue