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

16 lines
342 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-08-31 21:05:21 +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 }}
secrets: inherit