final form

This commit is contained in:
Jacob Heider 2023-01-05 19:19:09 -05:00
parent 7afa90bb0e
commit ddb3b967e7
No known key found for this signature in database
GPG key ID: A98011B5713535BF

View file

@ -7,6 +7,8 @@ on:
jobs: jobs:
cd: cd:
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs:
HAS_SECRETS: ${{ secrets.AWS_S3_CACHE != '' }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: > - run: >
@ -16,13 +18,15 @@ jobs:
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-pr: bottle-pr:
needs: [cd]
#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: ${{ needs.cd.outputs.HAS_SECRETS }}
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 == '' needs: [cd]
if: ${{ ! needs.cd.outputs.HAS_SECRETS }}
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 +34,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 }}