diff options
author | 2022-10-27 10:36:59 -0700 | |
---|---|---|
committer | 2022-10-27 10:36:59 -0700 | |
commit | e5344bfcc5bc31809ab21a7a46baeedb3bf39258 (patch) | |
tree | 18bb1cc8dfb5261a0b2ca0aad8e047af9233eba6 | |
parent | 46a85358d771981c272b680b5b55fb9a885a576e (diff) | |
download | bun-e5344bfcc5bc31809ab21a7a46baeedb3bf39258.tar.gz bun-e5344bfcc5bc31809ab21a7a46baeedb3bf39258.tar.zst bun-e5344bfcc5bc31809ab21a7a46baeedb3bf39258.zip |
Run homebrew action when release is edited
-rw-r--r-- | .github/workflows/bun-homebrew.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/bun-homebrew.yml b/.github/workflows/bun-homebrew.yml index 93bda7054..2bb6b00a1 100644 --- a/.github/workflows/bun-homebrew.yml +++ b/.github/workflows/bun-homebrew.yml @@ -3,10 +3,11 @@ on: release: types: - published + - edited jobs: homebrew: runs-on: ubuntu-latest - if: github.repository_owner == 'oven-sh' + if: github.repository_owner == 'oven-sh' && !github.event.release.draft steps: - id: checkout name: Checkout |