Skip to content

Commit

Permalink
chore(release): v0.1.7
Browse files Browse the repository at this point in the history
re #3
  • Loading branch information
Roytangrb committed Jan 19, 2021
1 parent 9117664 commit 3759c8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- name: Get the version tag
id: get_version_tag
run: echo ::set-output name=VERSION_TAG::${GITHUB_REF/refs\/tags\//}

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -29,7 +33,7 @@ jobs:
formula-name: gitwok
homebrew-tap: Roytangrb/homebrew-gitwok
base-branch: main
download-url: https://github.com/Roytangrb/gitwok/archive/${{ github.event.release.tag_name }}.tar.gz
download-url: https://github.com/Roytangrb/gitwok/archive/${{ steps.get_version_tag.outputs.VERSION_TAG }}.tar.gz
commit-message: Release {{version}}
env:
COMMITTER_TOKEN: ${{ secrets.BREW_TAP_REPO_TOKEN }}
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var logger *util.Logger = util.InitLogger(os.Stdout, os.Stdout, os.Stdout, os.St
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "gitwok",
Version: "v0.1.6",
Version: "v0.1.7",
Short: "Configurable CLI with conventional commits, changelog, git hooks all in one",
Run: func(cmd *cobra.Command, args []string) {},
}
Expand Down

0 comments on commit 3759c8f

Please sign in to comment.