Skip to content

Commit

Permalink
feat(semver): add support for semantic version as input
Browse files Browse the repository at this point in the history
  • Loading branch information
dharsanb committed Jun 18, 2024
1 parent 48ae59a commit 79028e4
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -59,12 +59,11 @@ jobs:
with:
version: '0.13.1'

- name: Ensure humctl is installed
- name: Ensure humctl version 0.13.1 is installed
id: humctl_version_0_13_1
run: humctl version
run: echo "$(humctl version)" >> $GITHUB_OUTPUT

- name: Ensure correct version is installed
id: check_output
if: "!contains( steps.humctl_version_0_13_1.outputs.result, 'humctl version 0.13.1')"
run: exit 1

@@ -75,9 +74,8 @@ jobs:

- name: Ensure humctl is installed
id: humctl_version_0_13
run: humctl version
run: echo "$(humctl version)" >> $GITHUB_OUTPUT

- name: Ensure correct version is installed
id: check_output
- name: Ensure humctl version 0.13.7 is installed
if: "!contains( steps.humctl_version_0_13.outputs.result, 'humctl version 0.13.7')"
run: exit 1

0 comments on commit 79028e4

Please sign in to comment.