Skip to content

Version 4.0.1 - Auto-start, smooth animations, auto-hide overlay, and… #1

Version 4.0.1 - Auto-start, smooth animations, auto-hide overlay, and…

Version 4.0.1 - Auto-start, smooth animations, auto-hide overlay, and… #1

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Build application
run: npm run build
- name: Package application
run: npx electron-builder --win --x64
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
dist-electron/*.exe
dist-electron/*.zip
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}