pantry/.github/workflows/new-version.yml
2022-10-02 17:18:00 -04:00

16 lines
324 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 }}
ref: ${{ github.sha }}
secrets: inherit