diff options
author | Ajay Ramachandran <[email protected]> | 2020-03-09 18:30:57 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-03-09 18:30:57 -0400 |
commit | 0813aa4ba3443c0993dc05aadf41860a9890b162 (patch) | |
tree | 05313a26c119f15674f7b50debdcd19c9643ca67 | |
parent | ff9b2338e0341fbfb175881ee75c50b488a8102f (diff) | |
download | SponsorBlock-0813aa4ba3443c0993dc05aadf41860a9890b162.tar.gz SponsorBlock-0813aa4ba3443c0993dc05aadf41860a9890b162.zip |
Prevent release workflow from running multiple times
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b3aaacaf..dae30ed1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,8 @@ name: Upload Release Build -on: release +on: + release: + types: [published] jobs: |