pantry/.github/workflows/new-version.yml
Jacob Heider 11c863706e
use PR build artifacts on merge (#78)
* Uploads artifacts to S3, bottles on a different workflow

* rip slack notifications

* be more explicit about AWS_S3_CACHE

* Revert "fix build-deps outputting stuff we need to build"

This reverts commit 972f0715f4.

Co-authored-by: Max Howell <mxcl@me.com>
2022-12-20 16:54:26 -05:00

21 lines
434 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
secrets: inherit