mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
71 lines
1.7 KiB
YAML
71 lines
1.7 KiB
YAML
name: new-version
|
|
run-name: building ${{ 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:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- darwin+x86-64
|
|
- linux+x86-64
|
|
- darwin+aarch64
|
|
- linux+aarch64
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
projects: ${{ inputs.projects }}
|
|
platform: ${{ matrix.platform }}
|
|
secrets: inherit
|
|
|
|
bottle:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- darwin+x86-64
|
|
- linux+x86-64
|
|
- darwin+aarch64
|
|
- linux+aarch64
|
|
needs: [build]
|
|
uses: ./.github/workflows/bottle.yml
|
|
with:
|
|
new-version: true
|
|
platform: ${{ matrix.platform }}
|
|
projects: ${{ inputs.projects }}
|
|
secrets: inherit
|
|
|
|
request-qa:
|
|
needs: [bottle]
|
|
if: ${{ needs.bottle.outputs.qa-required != '[]' }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
project: ${{ fromJson(needs.bottle.outputs.qa-required) }}
|
|
steps:
|
|
- uses: pkgxdev/pantry/.github/actions/request-qa@main
|
|
with:
|
|
project: ${{ matrix.project }}
|
|
slack-webhook: ${{ secrets.SLACK_QA_WEBHOOK }}
|
|
|
|
complain:
|
|
needs: [build, bottle]
|
|
if: failure()
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: pkgxdev/pantry/.github/actions/complain@main
|
|
with:
|
|
projects: ${{ inputs.projects }}
|
|
platform: ${{ inputs.platform }}
|
|
# slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
# slack-channel: ${{ secrets.SLACK_CHANNEL }}
|