Skip to content

Commit

Permalink
fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
coderPaddyS committed Jan 14, 2023
1 parent 2855aff commit e7287f3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/app_sdk_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,7 @@ jobs:
- sdk_version
steps:
- name: "Newer target sdk than ${{inputs.minTargetSdkVersion}}"
if: ${{ needs.sdk_version.outputs.targetSdkVersion }} < ${{ inputs.minTargetSdkVersion }}
run: exit 1
run: |
if [[ "${{ needs.sdk_version.outputs.targetSdkVersion }}" -lt "${{ inputs.minTargetSdkVersion }}" ]]; then
exit 1
fi

0 comments on commit e7287f3

Please sign in to comment.