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 7d4a04b
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,25 +59,22 @@ jobs:
with:
version: '0.13.1'

- name: Ensure humctl is installed
id: humctl_version_0_13_1
- name: Ensure humctl version 0.13.1 is installed
run: humctl version

- 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

- name: Test Local Action
uses: ./
with:
version: '0.13'

- name: Ensure humctl is installed
id: humctl_version_0_13
run: humctl version

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

- name: Ensure humctl is installed
run: humctl version

0 comments on commit 7d4a04b

Please sign in to comment.