Skip to content

Commit

Permalink
Merge pull request #5 from dolfolife/main-fix-workflow-release
Browse files Browse the repository at this point in the history
fix release action
  • Loading branch information
dolfolife committed Sep 17, 2023
2 parents d9eda8f + cee1b0a commit 3815ae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: goreleaser
name: Release CLI

on:
push:
Expand All @@ -22,7 +22,7 @@ jobs:

- name: Create new tag
run: |
tag = $(echo $(git describe --abbrev=0 --tags) | awk -F. '/[0-9]+\./{$NF++;print}' OFS=.)
tag=$(echo $(git describe --abbrev=0 --tags) | awk -F. '/[0-9]+\./{$NF++;print}' OFS=.)
git tag $tag
git push --tags
Expand Down

0 comments on commit 3815ae5

Please sign in to comment.