mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
3245fb5fc8
* just requires cargo to build * add in .github workflows * README deps
17 lines
383 B
YAML
17 lines
383 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: teaxyz/pantry.core/.github/workflows/build.yml@main
|
|
with:
|
|
projects: ${{ inputs.projects }}
|
|
upload: true
|
|
secrets: inherit |