mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
68a47ae737
* make branches actually parallel * more * wut * wip * wip
56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
name: cd
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
cd:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
HAS_ARTIFACTS: ${{ env.HAS_ARTIFACTS }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: teaxyz/setup@v0
|
|
- run: ./scripts/map-projects-to-githubs.ts
|
|
env:
|
|
WATCHER_URL: ${{ secrets.WATCHER_URL }}
|
|
TEA_API_TOKEN: ${{ secrets.TEA_API_TOKEN }}
|
|
- run: ./scripts/has-artifacts.ts ${{ github.repository }} ${{ github.sha }} >>$GITHUB_ENV
|
|
env:
|
|
GITHUB_TOKEN: ${{github.token}}
|
|
AWS_S3_CACHE: ${{ secrets.AWS_S3_CACHE }}
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
|
|
bottle-pr:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform:
|
|
- darwin+x86-64
|
|
- linux+x86-64
|
|
- darwin+aarch64
|
|
- linux+aarch64
|
|
needs: [cd]
|
|
if: ${{ needs.cd.outputs.HAS_ARTIFACTS == 'true' }}
|
|
uses: ./.github/workflows/bottle.yml
|
|
with:
|
|
platform: ${{ matrix.platform }}
|
|
secrets: inherit
|
|
bottle-standalone:
|
|
runs-on: ubuntu-latest
|
|
needs: [cd]
|
|
if: ${{ needs.cd.outputs.HAS_ARTIFACTS == 'false' }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: technote-space/get-diff-action@v6
|
|
id: diff
|
|
with:
|
|
PATTERNS: projects/**/package.yml
|
|
- run: gh workflow run new-version.yml -R teaxyz/pantry.core -f "projects=$PROJECTS"
|
|
if: ${{ steps.diff.outputs.diff != '' }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
|
|
PROJECTS: ${{ steps.diff.outputs.diff }}
|