Skip to content

fixed dependency, action concurrency #14

fixed dependency, action concurrency

fixed dependency, action concurrency #14

Workflow file for this run

name: Build appimage
on:
push:
workflow_dispatch:
concurrency:
group: "osx-build"
cancel-in-progress: true
jobs:
coderibbon-theia-appimage:
name: Build CodeRibbon-Theia appimage
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install building dependencies
run: sudo apt update &&
sudo apt -y install python3-setuptools libx11-dev libxkbfile-dev
- run: yarn install
- run: yarn download:plugins
- run: yarn build:electron
- run: yarn electron package --linux
- uses: actions/upload-artifact@v4
with:
path: electron-app/dist/*.AppImage
name: coderibbon-electron