diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index dc7fa16..05cf8fc 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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' }}