pantry/.github/workflows/new-version.yml

17 lines
361 B
YAML
Raw Normal View History

2022-08-31 19:36:54 +03:00
name: new-version
2022-10-04 01:32:49 +03:00
run-name: new-version (${{ inputs.projects }})
on:
workflow_dispatch:
inputs:
projects:
2022-12-15 02:38:20 +03:00
description: eg. `foo.com=1.2.3 bar.com^2.3.4`
required: true
type: string
jobs:
build:
uses: ./.github/workflows/build.yml
with:
2022-08-17 02:29:17 +03:00
projects: ${{ inputs.projects }}
2022-10-26 15:16:43 +03:00
upload: true
2022-08-17 02:29:17 +03:00
secrets: inherit