Skip to content

Update repository references in auto-updater configuration #45

Update repository references in auto-updater configuration

Update repository references in auto-updater configuration #45

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/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 }}