Skip to content

Commit

Permalink
fix(wf): typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dfm88 committed Mar 9, 2024
1 parent 4dd408e commit 4819467
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
- name: Print New Tag
id: print_new_tag
run: |
echo "New Tag: v${{ steps.generate_unreleased_changelog.outputs.version }}"
echo "New Tag: ${{ steps.generate_unreleased_changelog.outputs.version }}"
- name: release
uses: actions/create-release@v1
with:
release_name: Release v${{ steps.generate_unreleased_changelog.outputs.version }}
tag_name: v${{ steps.generate_unreleased_changelog.outputs.version }}
tag_name: ${{ steps.generate_unreleased_changelog.outputs.version }}
commitish: ${{ github.sha }}
body: ${{ steps.generate_unreleased_changelog.outputs.changelog }}
env:
Expand Down

0 comments on commit 4819467

Please sign in to comment.