Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Add manual release workflow for cases where one platform build fails (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
chase authored Jan 31, 2024
2 parents ee165fb + 154bcb4 commit 62f997f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Manual Trigger for Publish

on:
workflow_dispatch:
inputs:
version:
description: 'Version'
required: true
default: 'v20.3.0-rc'

jobs:
generate_sha:
name: Generate SHA
uses: ./.github/workflows/generate-sha.yml
with:
version: ${{ github.event.inputs.version }}
publish:
name: Publish Electron to NPM Registry
needs: [generate_sha]
uses: ./.github/workflows/publish.yml
with:
version: ${{ github.event.inputs.version }}
secrets:
NPM_AUTH: ${{ secrets.NPM_AUTH }}

0 comments on commit 62f997f

Please sign in to comment.