Skip to content

[UI] Frameless window option (with theme support) #3441

[UI] Frameless window option (with theme support)

[UI] Frameless window option (with theme support) #3441

Workflow file for this run

name: Build Linux
on:
pull_request:
branches: [main, stable]
workflow_dispatch:
inputs:
version:
description: 'Build Test Files'
required: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository.
uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt install snapcraft -y
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install node-gyp.
run: yarn global add node-gyp
- name: Install modules.
run: yarn install --frozen-lockfile
- name: Build artifacts.
run: yarn dist:linux appimage --publish=never
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
- name: Upload AppImage.
uses: actions/upload-artifact@v3
with:
name: linux-appimage
path: dist/Heroic-*.AppImage
retention-days: 14