2022-08-17 03:35:49 +03:00
|
|
|
name: cd
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
cd:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: >
|
2022-12-21 00:54:26 +03:00
|
|
|
grep -E ' github: [^\w]+/[^\w/]+' projects/**/package.yml |
|
2022-08-17 03:35:49 +03:00
|
|
|
sed -e 's|^projects/\(.*\)/package.yml: *github: \([^/]*/[^/]*\).*|{ "project": "\1", "github": "\2" }|' |
|
|
|
|
jq -sc . |
|
|
|
|
curl https://app.tea.xyz/api/receiveWatcherProjects --fail -X PUT \
|
2022-10-26 15:16:43 +03:00
|
|
|
-H "content-type: application/json" -H "authorization: bearer ${{ secrets.TEA_API_TOKEN }}" -d @-
|
2023-01-06 02:31:35 +03:00
|
|
|
bottle-pr:
|
|
|
|
#FIXME: will fail (harmlessly) on non-merge/non-new-version runs, and won't work on 3rd-party PRs
|
2023-01-06 02:46:42 +03:00
|
|
|
if: ${{ secrets.AWS_S3_CACHE != '' }}
|
2022-12-21 00:54:26 +03:00
|
|
|
uses: ./.github/workflows/bottle.yml
|
2022-10-26 15:16:43 +03:00
|
|
|
secrets: inherit
|
2023-01-06 02:31:35 +03:00
|
|
|
bottle-standalone:
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-06 02:46:42 +03:00
|
|
|
if: ${{ secrets.AWS_S3_CACHE == '' }}
|
2023-01-06 02:31:35 +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 02:46:42 +03:00
|
|
|
if: ${{ steps.diff.outputs.diff != '' }}
|
2023-01-06 02:31:35 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
|
2023-01-06 02:36:34 +03:00
|
|
|
PROJECTS: ${{ steps.diff.outputs.diff }}
|