Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,18 @@ jobs:
git fetch --tags
TAG_EXISTS=$(git tag -l "v${{ steps.cargo-version.outputs.VERSION }}")
if [ -n "$TAG_EXISTS" ]; then
echo "Tag v${{ steps.cargo-version.outputs.VERSION }} already exists"
echo "Tag ${{ steps.cargo-version.outputs.VERSION }} already exists"
exit 1
fi
git tag v${{ steps.cargo-version.outputs.VERSION }}
git push origin v${{ steps.cargo-version.outputs.VERSION }}
git tag ${{ steps.cargo-version.outputs.VERSION }}
git push origin ${{ steps.cargo-version.outputs.VERSION }}

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: v${{ steps.cargo-version.outputs.VERSION }}
release_name: Release v${{ steps.cargo-version.outputs.VERSION }}
tag_name: ${{ steps.cargo-version.outputs.VERSION }}
release_name: Release ${{ steps.cargo-version.outputs.VERSION }}
draft: false
prerelease: false
env:
Expand Down
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ main() {
darwin-x86_64)
gh_binary_name="core-cli-darwin-x86_64"
;;
darwin-aarch64)
darwin-arm64)
gh_binary_name="core-cli-darwin-arm64"
;;
windows-x86_64)
Expand Down
Loading