Skip to content

modified: .github/workflows/ci-cd.yml #60

modified: .github/workflows/ci-cd.yml

modified: .github/workflows/ci-cd.yml #60

Workflow file for this run

name: CI/CD
on:
push:
branches: [ main ]
tags:
- 'v*'
pull_request:
branches: [ main ]
permissions:
contents: write
env:
NODE_VERSION: '20'
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Setup Git
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'github-actions@github.com'
shell: bash
- name: Install dependencies
run: |
cd frontend
npm ci
shell: bash
- name: Update version
run: |
cd frontend
npm version patch -m "Bump version to %s [skip ci]"
git push
git push --tags
shell: bash
- name: Build Electron app
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd frontend
npm run dist:windows
shell: bash
- name: Install dependencies
run: |
npm install -g npm@latest
cd frontend
npm ci
shell: bash
- name: Check icon file
run: |
if (Test-Path frontend/build/icon.ico) {
echo "Icon file exists"
} else {
echo "Icon file is missing"
exit 1
}
shell: pwsh
- name: Build Electron app
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd frontend
npm ci
npm run dist:windows
shell: bash
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist-windows
path: frontend/dist/*.exe
release:
needs: build-windows
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: dist-windows
path: dist
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
./dist/*.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}