diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 21:23:06 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 21:23:06 -0400 |
commit | aa29bdbc077a7102bc120d8215caf7d9b2768b1a (patch) | |
tree | f9b19a3a24f9742b534aa1c4eae7c846c13f681d | |
parent | b4e78e5000b4c9be267a1779573a272caac3e070 (diff) |
.github/workflows: release.yml: change to on workflow_dispatch
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | version/version.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 91b078d..67249da 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,5 +1,5 @@ name: Build binaries -on: workflow_call +on: workflow_dispatch jobs: build: runs-on: ubuntu-latest diff --git a/version/version.go b/version/version.go index 5ab05ea..64639a7 100644 --- a/version/version.go +++ b/version/version.go @@ -3,4 +3,4 @@ package version -const Version = "0.8.0-dev.5" +const Version = "0.8.0-dev.6" |