-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: prepare
v5.18.0
release (#1705)
* 5.18.0 * build: fix signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * build: fix signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * build: fix signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * build: fix signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * fix: macos code signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * fix: macos code signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * fix: macos code signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * fix: macos code signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * fix: macos code signing Signed-off-by: Adam Setch <adam.setch@outlook.com> * fix: macos code signing Signed-off-by: Adam Setch <adam.setch@outlook.com> --------- Signed-off-by: Adam Setch <adam.setch@outlook.com>
- Loading branch information
Showing
4 changed files
with
125 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: Publish | ||
|
||
on: | ||
workflow_call: | ||
workflow_dispatch: # For manually running release process to verify code-signing of artifacts | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
release-macos: | ||
name: Publish macOS (electron-builder) | ||
runs-on: macos-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 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 | ||
|
||
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 | ||
|
||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,24 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_call: | ||
workflow_dispatch: # For manually running release process to verify code-signing of artifacts | ||
|
||
permissions: | ||
contents: write | ||
on: | ||
push: | ||
branches: | ||
- release/v*.*.* # macOS code-signing only works on `push` events and not `pull_request` events | ||
|
||
jobs: | ||
release-macos: | ||
name: Publish macOS (electron-builder) | ||
runs-on: macos-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 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 | ||
|
||
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 | ||
|
||
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 | ||
lint: | ||
name: Lint App | ||
uses: ./.github/workflows/lint.yml | ||
|
||
tests: | ||
name: Tests | ||
uses: ./.github/workflows/test.yml | ||
needs: lint | ||
|
||
release: | ||
name: Publish | ||
uses: ./.github/workflows/publish.yml | ||
needs: tests | ||
secrets: inherit | ||
permissions: | ||
contents: write |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters