pantry/.github/workflows/new-version.yml
2022-12-20 18:29:41 -05:00

23 lines
468 B
YAML

name: new-version
run-name: new-version (${{ inputs.projects }})
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
bottle:
needs: [build]
uses: ./.github/workflows/bottle.yml
with:
new-version: true
secrets: inherit