mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
better ci/cd for 3rd-party contributions
This commit is contained in:
parent
a9344e6e62
commit
8924220af0
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -155,7 +155,8 @@ jobs:
|
||||||
|
|
||||||
stage:
|
stage:
|
||||||
needs: [test]
|
needs: [test]
|
||||||
if: startsWith(github.ref, 'refs/pull/') && startsWith(github.repository, 'teaxyz/pantry.')
|
# this only works for PRs from our team to our repo (security! :( )
|
||||||
|
if: startsWith(github.ref, 'refs/pull/') && startsWith(github.repository, 'teaxyz/pantry.') && secrets.AWS_S3_CACHE != ''
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
18
.github/workflows/cd.yml
vendored
18
.github/workflows/cd.yml
vendored
|
@ -15,7 +15,21 @@ jobs:
|
||||||
jq -sc . |
|
jq -sc . |
|
||||||
curl https://app.tea.xyz/api/receiveWatcherProjects --fail -X PUT \
|
curl https://app.tea.xyz/api/receiveWatcherProjects --fail -X PUT \
|
||||||
-H "content-type: application/json" -H "authorization: bearer ${{ secrets.TEA_API_TOKEN }}" -d @-
|
-H "content-type: application/json" -H "authorization: bearer ${{ secrets.TEA_API_TOKEN }}" -d @-
|
||||||
bottle:
|
bottle-pr:
|
||||||
#FIXME: will fail (harmlessly) on non-merge/non-new-version runs
|
#FIXME: will fail (harmlessly) on non-merge/non-new-version runs, and won't work on 3rd-party PRs
|
||||||
|
if: secrets.AWS_S3_CACHE != ''
|
||||||
uses: ./.github/workflows/bottle.yml
|
uses: ./.github/workflows/bottle.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
bottle-standalone:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: secrets.AWS_S3_CACHE == ''
|
||||||
|
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"
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
|
||||||
|
PROJECTS: ${{ steps.diff.outputs.diff | 'zlib.net' }}
|
||||||
|
|
Loading…
Reference in a new issue