Skip to content

Commit

Permalink
v0.1.5 with no 'v' before github.ref_name
Browse files Browse the repository at this point in the history
  • Loading branch information
ret2libc committed Oct 15, 2022
1 parent 43c9bcf commit 5bd38f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- name: Check version matches
run: |
[[ "v$(grep app.Version main.go | sed -r 's/.*\"([0-9\.]+)\"/\1/')" =~ "v${{ github.ref_name }}" ]]
[[ "v$(grep app.Version main.go | sed -r 's/.*\"([0-9\.]+)\"/\1/')" =~ "${{ github.ref_name }}" ]]
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func main() {
app := cli.NewApp()
app.Name = "rz-pm"
app.Usage = "rizin package manager"
app.Version = "0.1.4"
app.Version = "0.1.5"

app.Flags = []cli.Flag{
&cli.BoolFlag{
Expand Down

0 comments on commit 5bd38f7

Please sign in to comment.