diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18c75b7..75d484f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,17 @@ name: Build # Run this workflow every time a new commit pushed to your repository -on: [push, pull_request] +on: + push: + branches: + - main + - master + tags-ignore: + - 'v*' + pull_request: + branches: + - main + - master jobs: # Set the job key. The key is displayed as the job name diff --git a/cmd/srun/main.go b/cmd/srun/main.go index 71ee8d4..c3e1a36 100755 --- a/cmd/srun/main.go +++ b/cmd/srun/main.go @@ -7,7 +7,7 @@ import ( "github.com/spf13/cobra" ) -const Version = "v1.1.3" +const Version = "v1.1.4" var loginCmd = &cobra.Command{ Use: "login",