Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
- name: Package for ${{ matrix.platform }}
run: ${{ matrix.package-cmd }}
env:
# For macOS
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# Signing certificates - important to use the correct cert per platform
CSC_LINK: ${{ matrix.platform == 'macOS' && secrets.CSC_LINK || (matrix.platform == 'windows' && secrets.WIN_CSC_LINK || '') }}
CSC_KEY_PASSWORD: ${{ matrix.platform == 'macOS' && secrets.CSC_KEY_PASSWORD || (matrix.platform == 'windows' && secrets.WIN_CSC_KEY_PASSWORD || '') }}

- name: Clean up builds
shell: bash
Expand All @@ -54,5 +54,7 @@ jobs:
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: ${{ matrix.artifact-name }}
path: dist/
path: |
dist/*
!dist/*/
overwrite: true
14 changes: 9 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,22 @@ jobs:
- name: Package and publish for ${{ matrix.platform }}
run: ${{ matrix.package-cmd }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# For macOS
# Signing certificates - important to use the correct cert per platform
CSC_LINK: ${{ matrix.platform == 'macOS' && secrets.CSC_LINK || (matrix.platform == 'windows' && secrets.WIN_CSC_LINK || '') }}
CSC_KEY_PASSWORD: ${{ matrix.platform == 'macOS' && secrets.CSC_KEY_PASSWORD || (matrix.platform == 'windows' && secrets.WIN_CSC_KEY_PASSWORD || '') }}
# macOS specific
APPLE_ID_USERNAME: ${{ secrets.APPLE_ID_USERNAME }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
APPLE_ID_TEAM_ID: ${{ secrets.APPLE_ID_TEAM_ID }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
NOTARIZE: ${{ matrix.use-apple-notarization }}
# General
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload artifacts
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: ${{ matrix.artifact-name }}
path: dist/
path: |
dist/*
!dist/*/
overwrite: true
9 changes: 7 additions & 2 deletions config/electron-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
const config = {
productName: 'Gitify',
appId: 'com.electron.gitify',
copyright: 'Copyright © 2025 Gitify Team',
copyright: 'Copyright © 2026 Gitify Team',
asar: true,
files: [
'assets/images/*',
Expand Down Expand Up @@ -41,7 +41,12 @@ const config = {
sign: false,
},
win: {
target: 'nsis',
target: [
{
target: 'nsis',
arch: ['x64'],
},
],
icon: 'assets/images/app-icon.ico',
},
nsis: {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"homepage": "https://gitify.io/",
"dependencies": {
"electron-log": "5.4.3",
"electron-updater": "6.7.3",
"electron-updater": "6.8.1",
"menubar": "9.5.2",
"react": "19.2.3",
"react-dom": "19.2.3",
Expand Down Expand Up @@ -118,7 +118,7 @@
"date-fns": "4.1.0",
"dotenv": "17.2.3",
"electron": "40.0.0",
"electron-builder": "26.4.0",
"electron-builder": "26.5.0",
"final-form": "5.0.0",
"graphql": "16.12.0",
"html-webpack-plugin": "5.6.6",
Expand Down
92 changes: 46 additions & 46 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.