Skip to content

Merge remote-tracking branch 'origin/main' into release/v5.7.0 #110

Merge remote-tracking branch 'origin/main' into release/v5.7.0

Merge remote-tracking branch 'origin/main' into release/v5.7.0 #110

Workflow file for this run

name: Release App
on:
push:
branches:
- 'release/v**'
workflow_dispatch: # For manually running release process to verify codesigning of artifacts
jobs:
release-macos:
name: Publish macOS (electron-builder)
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- run: pnpm install
- run: pnpm build
env:
OAUTH_CLIENT_ID: ${{ secrets.oauth_client_id }}
OAUTH_CLIENT_SECRET: ${{ secrets.oauth_client_secret }}
- run: pnpm make:macos --publish onTagOrDraft
env:
APPLEID_USERNAME: ${{ secrets.appleid_username }}
APPLEID_PASSWORD: ${{ secrets.appleid_password }}
APPLEID_TEAM_ID: ${{ secrets.appleid_teamid }}
CSC_LINK: ${{ secrets.mac_certs }}
CSC_KEY_PASSWORD: ${{ secrets.mac_certs_password }}
GH_TOKEN: ${{ secrets.gh_token }}
NOTARIZE: true
- uses: actions/upload-artifact@v4
with:
name: Gitify-release-mac
path: dist/
overwrite: true
release-windows:
name: Publish Windows (electron-builder)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- run: pnpm install
- run: pnpm build
env:
OAUTH_CLIENT_ID: ${{ secrets.oauth_client_id }}
OAUTH_CLIENT_SECRET: ${{ secrets.oauth_client_secret }}
- run: pnpm make:win --publish onTagOrDraft
env:
GH_TOKEN: ${{ secrets.gh_token }}
- uses: actions/upload-artifact@v4
with:
name: Gitify-release-win
path: dist/
overwrite: true
release-linux:
name: Publish Linux (electron-builder)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- run: pnpm install
- run: pnpm build
env:
OAUTH_CLIENT_ID: ${{ secrets.oauth_client_id }}
OAUTH_CLIENT_SECRET: ${{ secrets.oauth_client_secret }}
- run: pnpm make:linux --publish onTagOrDraft
env:
GH_TOKEN: ${{ secrets.gh_token }}
- uses: actions/upload-artifact@v4
with:
name: Gitify-release-linux
path: dist/
overwrite: true
changelog:

Check failure on line 91 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release App

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 91, Col: 1): Unexpected value 'changelog'
exclude:
labels:
- ignore-for-release
authors:
- octocat
categories:
- title: 🚀 Features
labels:
- enhancement
- title: 🐛 Bug Fixes
labels:
- bug
- title: 🧼 Code Refactoring
labels:
- refactor
- title: 📚 Documentation
labels:
- documentation
- title: 🧪 Testing
labels:
- test
- title: 🏗️ Build System
labels:
- build
- title: 📦 Dependency Updates
labels:
- build
- title: Other Changes
labels:
- "*"