build: Installed appimage deps
This commit is contained in:
parent
4ec1e24dfb
commit
31b2bb51cc
2 changed files with 15 additions and 1 deletions
|
|
@ -11,12 +11,18 @@ jobs:
|
||||||
container:
|
container:
|
||||||
image: node:20
|
image: node:20
|
||||||
steps:
|
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
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
|
|
||||||
# 1. FIX: Install system dependencies BEFORE setup-bun
|
# 1. FIX: Install system dependencies BEFORE setup-bun
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
@ -40,6 +46,10 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install --frozen-lockfile
|
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
|
- name: Build Canary
|
||||||
run: bun run package:linux
|
run: bun run package:linux
|
||||||
|
|
||||||
|
|
|
||||||
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -62,6 +62,10 @@ jobs:
|
||||||
env:
|
env:
|
||||||
BUILD_DIR: ./build/${{ runner.os }}
|
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
|
- name: Upload Linux Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue