Skip to content

Merge branch 'main' into release/v5.18.0 #144

Merge branch 'main' into release/v5.18.0

Merge branch 'main' into release/v5.18.0 #144

Workflow file for this run

name: Release
on:
push:
branches:
- 'release/v**'
workflow_dispatch: # For manually running release process to verify codesigning of artifacts
permissions:
contents: write
jobs:
lint:
name: Lint App
uses: ./.github/workflows/lint.yml
tests:
name: Tests
uses: ./.github/workflows/test.yml
needs: lint
release-macos:
name: Publish macOS (electron-builder)
runs-on: macos-latest
needs: tests
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 prepare:remove-source-maps
- run: pnpm package: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.github_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
needs: tests
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 prepare:remove-source-maps
- run: pnpm package:win --publish onTagOrDraft
env:
GH_TOKEN: ${{ secrets.github_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
needs: tests
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 prepare:remove-source-maps
- run: pnpm package:linux --publish onTagOrDraft
env:
GH_TOKEN: ${{ secrets.github_token }}
- uses: actions/upload-artifact@v4
with:
name: Gitify-release-linux
path: dist/
overwrite: true