Skip to content

Commit

Permalink
ci: add initial creating package GHA to test it out manually (#1784)
Browse files Browse the repository at this point in the history
* ci: add initial creating package GHA

* fix pritter
  • Loading branch information
KazuCocoa authored Nov 6, 2024
1 parent 22a0c13 commit 85e9e53
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Create packages

on:
workflow_dispatch:
# push:
# tags:
# - '*'

jobs:
linux-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
- name: Install dependencies (Node.js)
run: npm ci
- name: Build electron app
run: npm run build:electron
- name: build package
run: npx electron-builder build --x64 --arm64 --publish never

0 comments on commit 85e9e53

Please sign in to comment.