diff options
author | 2022-10-27 10:38:18 -0700 | |
---|---|---|
committer | 2022-10-27 10:38:18 -0700 | |
commit | 1c6da5934d31273da13dd66c03ef6eab5437f198 (patch) | |
tree | b1251c8610bce81bc31925b5874dd7c90f282a63 | |
parent | e5344bfcc5bc31809ab21a7a46baeedb3bf39258 (diff) | |
download | bun-1c6da5934d31273da13dd66c03ef6eab5437f198.tar.gz bun-1c6da5934d31273da13dd66c03ef6eab5437f198.tar.zst bun-1c6da5934d31273da13dd66c03ef6eab5437f198.zip |
Check published_at instead of draft in GitHub action
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/bun-homebrew.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/bun-homebrew.yml b/.github/workflows/bun-homebrew.yml index 2bb6b00a1..49501c1cc 100644 --- a/.github/workflows/bun-homebrew.yml +++ b/.github/workflows/bun-homebrew.yml @@ -7,7 +7,7 @@ on: jobs: homebrew: runs-on: ubuntu-latest - if: github.repository_owner == 'oven-sh' && !github.event.release.draft + if: github.repository_owner == 'oven-sh' && github.event.release.published_at != null steps: - id: checkout name: Checkout |