mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
last one, i hope
This commit is contained in:
parent
a22f2bb6e5
commit
bb81486d83
1 changed files with 2 additions and 2 deletions
4
.github/workflows/cd.yml
vendored
4
.github/workflows/cd.yml
vendored
|
@ -20,13 +20,13 @@ jobs:
|
||||||
bottle-pr:
|
bottle-pr:
|
||||||
needs: [cd]
|
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: needs.cd.outputs.HAS_SECRETS
|
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
|
||||||
needs: [cd]
|
needs: [cd]
|
||||||
if: ! needs.cd.outputs.HAS_SECRETS
|
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
|
||||||
|
|
Loading…
Reference in a new issue