Skip to content

fix: update version to 0.1.2 in package.json #5

fix: update version to 0.1.2 in package.json

fix: update version to 0.1.2 in package.json #5

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install flatpak tooling
run: sudo apt-get update && sudo apt-get install -y flatpak flatpak-builder
- name: Configure Flathub remote
run: flatpak remote-add --if-not-exists --user flathub https://flathub.org/repo/flathub.flatpakrepo
- name: Install dependencies
run: npm ci
- name: Build x64 packages
run: npx electron-builder --linux deb rpm AppImage flatpak --publish always
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build arm64 packages
run: npx electron-builder --linux deb rpm AppImage flatpak --arm64 --publish always
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}