Skip to content

Commit

Permalink
ci: fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
boromir674 committed Dec 25, 2023
1 parent 85999a8 commit a6f3eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Expand Up @@ -164,7 +164,7 @@ jobs:

- name: "Get Last 2 digits of Sem Ver: ${{ env.WHEEL_VERSION }}"
id: extract_sem_ver_last_two_chars
run: 'echo last_two="${$WHEEL_VERSION: -2}" >> $GITHUB_OUTPUT'
run: 'echo last_two="${WHEEL_VERSION: -2}" >> $GITHUB_OUTPUT'

- name: "Append 0 if ends with 'rc'; is last 2 digits 'rc'? : ${{ steps.extract_sem_ver_last_two_chars.outputs.last_two == 'rc' }}"
if: ${{ steps.extract_sem_ver_last_two_chars.outputs.last_two == 'rc' }}
Expand Down

0 comments on commit a6f3eea

Please sign in to comment.