2022-10-31 21:00:24 +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:01 +03:00
|
|
|
grep -E ' github: [^\w]+/[^\w/]+' projects/**/package.yml |
|
2022-10-31 21:00:24 +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 \
|
|
|
|
-H "content-type: application/json" -H "authorization: bearer ${{ secrets.TEA_API_TOKEN }}" -d @-
|
2022-12-21 00:54:01 +03:00
|
|
|
bottle:
|
|
|
|
#FIXME: will fail (harmlessly) on non-merge/non-new-version runs
|
|
|
|
uses: teaxyz/pantry.core/.github/workflows/bottle.yml@main
|
2022-10-31 21:00:24 +03:00
|
|
|
secrets: inherit
|