Skip to content

Commit 029cb49

Browse files
committed
remove changes needed only for test
1 parent 98de79d commit 029cb49

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/release-cli.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release CLI
33
on:
44
push:
55
tags:
6-
- "test*"
6+
- "v*"
77

88
jobs:
99
create-release:
@@ -21,13 +21,9 @@ jobs:
2121
- name: Check Release Version is Same as CLI Version
2222
if: ${{ !endsWith(github.ref, steps.read_cli_version.outputs.value) }}
2323
run: |
24-
echo "Tag version ${{ github.ref }} is not equal to Cargo.toml version ${{ steps.read_cli_version.outputs.value }}";
24+
echo "Tag version ${{ github.ref }} doesn't match Cargo.toml version ${{ steps.read_cli_version.outputs.value }}";
2525
echo "Did you forget to update version in Cargo.toml?"
2626
exit 1
27-
- name: Always fail during testing to avoid creating a release
28-
run: |
29-
echo "Failing to avoid creating a release"
30-
exit 1
3127
- name: Create Release
3228
id: create_release
3329
uses: actions/create-release@v1

0 commit comments

Comments
 (0)