Skip to content

Commit

Permalink
Add manual step for packaging to 'manual_dispatch.yml'
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Apr 21, 2023
1 parent 2729c71 commit a3178e6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/manual_dispatch.yml
Expand Up @@ -35,6 +35,11 @@ on:
type: boolean
required: true
default: false
PACKAGE:
description: 'Package'
type: boolean
required: true
default: false

jobs:
lint_all:
Expand Down Expand Up @@ -85,3 +90,11 @@ jobs:
PLATFORM: macos-intel
secrets:
CALLER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package_and_uplaod:
name: Package and Upload
needs: [build_linux, build_windows]
if: ${{ github.event.inputs.PACKAGE == 'true' }}
uses: ./.github/workflows/reusable_package_and_upload.yml
secrets:
CALLER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a3178e6

Please sign in to comment.