mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
someday i'll know when this needs braces.
This commit is contained in:
parent
30e960c252
commit
2af6b64253
1 changed files with 3 additions and 3 deletions
6
.github/workflows/cd.yml
vendored
6
.github/workflows/cd.yml
vendored
|
@ -17,12 +17,12 @@ jobs:
|
||||||
-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-pr:
|
bottle-pr:
|
||||||
#FIXME: will fail (harmlessly) on non-merge/non-new-version runs, and won't work on 3rd-party PRs
|
#FIXME: will fail (harmlessly) on non-merge/non-new-version runs, and won't work on 3rd-party PRs
|
||||||
if: secrets.AWS_S3_CACHE != ''
|
if: ${{ secrets.AWS_S3_CACHE != '' }}
|
||||||
uses: ./.github/workflows/bottle.yml
|
uses: ./.github/workflows/bottle.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
bottle-standalone:
|
bottle-standalone:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: secrets.AWS_S3_CACHE == ''
|
if: ${{ secrets.AWS_S3_CACHE == '' }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: technote-space/get-diff-action@v6
|
- uses: technote-space/get-diff-action@v6
|
||||||
|
@ -30,7 +30,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
PATTERNS: projects/**/package.yml
|
PATTERNS: projects/**/package.yml
|
||||||
- run: gh workflow run new-version.yml -R teaxyz/pantry.core -f "projects=$PROJECTS"
|
- run: gh workflow run new-version.yml -R teaxyz/pantry.core -f "projects=$PROJECTS"
|
||||||
if: steps.diff.outputs.diff != ''
|
if: ${{ steps.diff.outputs.diff != '' }}
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
|
GITHUB_TOKEN: ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}
|
||||||
PROJECTS: ${{ steps.diff.outputs.diff }}
|
PROJECTS: ${{ steps.diff.outputs.diff }}
|
||||||
|
|
Loading…
Reference in a new issue