pantry/.github/workflows/cd.yml

58 lines
1.7 KiB
YAML
Raw Normal View History

name: cd
on:
push:
branches:
- main
jobs:
cd:
runs-on: ubuntu-latest
2023-01-06 03:19:09 +03:00
outputs:
2023-01-12 02:47:07 +03:00
HAS_ARTIFACTS: ${{ env.HAS_ARTIFACTS }}
steps:
- uses: actions/checkout@v3
2023-01-12 02:47:07 +03:00
with:
repository: teaxyz/pantry.core
2023-02-02 02:43:06 +03:00
- uses: teaxyz/setup@v0
2023-01-13 02:32:05 +03:00
- run: ./scripts/map-projects-to-githubs.ts
env:
WATCHER_URL: ${{ secrets.WATCHER_URL }}
TEA_API_TOKEN: ${{ secrets.TEA_API_TOKEN }}
2023-01-12 02:47:07 +03:00
- 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 }}
2023-02-04 03:52:04 +03:00
2023-01-06 02:32:56 +03:00
bottle-pr:
2023-02-04 03:52:04 +03:00
strategy:
fail-fast: false
matrix:
platform:
- darwin+x86-64
- linux+x86-64
- darwin+aarch64
- linux+aarch64
2023-01-06 03:19:09 +03:00
needs: [cd]
2023-01-12 02:47:07 +03:00
if: ${{ needs.cd.outputs.HAS_ARTIFACTS == 'true' }}
2023-01-06 03:20:26 +03:00
uses: teaxyz/pantry.core/.github/workflows/bottle.yml@main
2023-02-04 03:52:04 +03:00
with:
platform: ${{ matrix.platform }}
secrets: inherit
2023-01-06 02:32:56 +03:00
bottle-standalone:
runs-on: ubuntu-latest
2023-01-06 03:19:09 +03:00
needs: [cd]
2023-01-12 02:47:07 +03:00
if: ${{ needs.cd.outputs.HAS_ARTIFACTS == 'false' }}
2023-01-06 02:32:56 +03:00
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"
2023-01-06 03:19:09 +03:00
if: ${{ steps.diff.outputs.diff != '' }}
2023-01-06 02:32:56 +03:00
env:
GITHUB_TOKEN: ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
2023-01-06 02:32:56 +03:00
PROJECTS: ${{ steps.diff.outputs.diff }}