Skip to content

Commit

Permalink
ci: try to fix step variables
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Oct 27, 2023
1 parent bcf5355 commit 02d5bd0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
if: ${{ !env.ACT }}
with:
command: manifest
outputs:
release_catwalk: ${{ steps.release.outputs['packages/catwalk--release_created'] || env.ACT }}

upload:
upload-catwalk:
name: Upload ${{ matrix.member }} for ${{ matrix.os }}
needs: release-please
runs-on: ${{ matrix.os }}
if: ${{ steps.release.outputs['packages/catwalk--release_created'] }}
if: ${{ needs.release-please.outputs.release_catwalk }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 02d5bd0

Please sign in to comment.