mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
.some(cd)
This commit is contained in:
parent
ac366df5ec
commit
9249d0d7db
17
.github/workflows/cd.yml
vendored
Normal file
17
.github/workflows/cd.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: cd
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
cd:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: >
|
||||
grep -E ' github: [^\w]+/[^\w]+' projects/**/package.yml |
|
||||
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 @-
|
Loading…
Reference in a new issue