pantry/.github/workflows/new-version.yml
2022-08-31 15:45:04 -04:00

15 lines
295 B
YAML

name: new-version
on:
workflow_dispatch:
inputs:
projects:
description: eg. `foo.com@1.2.3 bar.com@2.3.4`
required: true
type: string
jobs:
build:
uses: ./.github/workflows/build.yml
with:
projects: ${{ inputs.projects }}
secrets: inherit