forked from nekupaw/gemini-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.37 KB
/
auto-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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/Gemini-Desktop-Setup-*.exe
build/Gemini-Desktop-Setup-*.exe.blockmap
build/latest.yml
build/Gemini-Desktop-*.AppImage
build/latest-linux.yml
build/gemini-desktop_*_amd64.deb
build/gemini-desktop-*.x86_64.rpm
build/Gemini-Desktop-*-arm64.dmg
build/Gemini-Desktop-*-arm64.dmg.blockmap
build/latest-mac.yml
draft: true
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}