Skip to content

"Bump version to 1.0.7-fork.3 and fix keybinding registration functio… #25

"Bump version to 1.0.7-fork.3 and fix keybinding registration functio…

"Bump version to 1.0.7-fork.3 and fix keybinding registration functio… #25

Workflow file for this run

name: Auto Release
on:
push:
branches:
- main
tags:
- '*' # Trigger on any tag
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Build Electron app
run: npm run build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create and Upload GitHub Release
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: Release of version ${{ github.ref_name }}
files: |
build/*.exe
build/*.AppImage
build/*.deb
build/*.rpm
build/*.dmg
build/*.zip
build/*.tar.gz
build/*.blockmap
build/*.yml
draft: true
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}