mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
15 lines
321 B
YAML
15 lines
321 B
YAML
name: new_version
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
projects:
|
|
description: A JSON string containing repository/version values to build
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
build:
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
projects: ${{ inputs.projects }}
|
|
secrets: inherit |