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

71 lines
1.7 KiB
YAML
Raw Normal View History

name: new-version
2023-03-16 15:33:53 +03:00
run-name: building ${{ inputs.projects }}
2023-04-09 15:26:48 +03:00
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:
2023-06-20 01:01:17 +03:00
- darwin+x86-64
- linux+x86-64
- darwin+aarch64
- linux+aarch64
uses: ./.github/workflows/build.yml
with:
projects: ${{ inputs.projects }}
platform: ${{ matrix.platform }}
secrets: inherit
2023-04-09 15:26:48 +03:00
bottle:
strategy:
fail-fast: false
matrix:
platform:
2023-06-20 01:01:17 +03:00
- darwin+x86-64
- linux+x86-64
- darwin+aarch64
- linux+aarch64
needs: [build]
2023-04-09 15:26:48 +03:00
uses: ./.github/workflows/bottle.yml
with:
2023-04-09 15:26:48 +03:00
new-version: true
platform: ${{ matrix.platform }}
2023-04-22 00:19:52 +03:00
projects: ${{ inputs.projects }}
secrets: inherit
2023-04-09 15:26:48 +03:00
2023-06-04 10:08:05 +03:00
request-qa:
needs: [bottle]
if: ${{ needs.bottle.outputs.qa-required != '[]' }}
runs-on: ubuntu-latest
strategy:
matrix:
project: ${{ fromJson(needs.bottle.outputs.qa-required) }}
steps:
2023-09-30 19:15:42 +03:00
- uses: pkgxdev/pantry/.github/actions/request-qa@main
2023-06-04 10:08:05 +03:00
with:
project: ${{ matrix.project }}
slack-webhook: ${{ secrets.SLACK_QA_WEBHOOK }}
2023-04-09 15:26:48 +03:00
complain:
needs: [build, bottle]
if: failure()
permissions:
issues: write
runs-on: ubuntu-latest
steps:
2023-09-30 19:15:42 +03:00
- uses: pkgxdev/pantry/.github/actions/complain@main
2023-04-09 15:26:48 +03:00
with:
projects: ${{ inputs.projects }}
platform: ${{ inputs.platform }}
# slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
# slack-channel: ${{ secrets.SLACK_CHANNEL }}