mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
3245fb5fc8
* just requires cargo to build * add in .github workflows * README deps
35 lines
1 KiB
YAML
35 lines
1 KiB
YAML
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 @-
|
|
get-diff:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
diff: ${{ steps.diff.outputs.diff }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: technote-space/get-diff-action@v6
|
|
id: diff
|
|
with:
|
|
PATTERNS: projects/**/package.yml
|
|
build:
|
|
needs: [get-diff]
|
|
uses: teaxyz/pantry.core/.github/workflows/build.yml@main
|
|
with:
|
|
projects: ${{ needs.get-diff.outputs.diff }}
|
|
upload: true
|
|
secrets: inherit
|
|
if: ${{ needs.get-diff.outputs.diff != '' }} |