Skip to content

Commit

Permalink
restore check for module version
Browse files Browse the repository at this point in the history
  • Loading branch information
achou11 committed Feb 26, 2024
1 parent 354fb49 commit d9b515e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/prebuilds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ env:

jobs:
build:
if: ${{ github.env.MODULE_VERSION != '' }}
runs-on: ubuntu-20.04
timeout-minutes: 10
strategy:
Expand All @@ -32,6 +31,10 @@ jobs:
if: ${{ env.MODULE_NAME == '' }}
run: echo "env.MODULE_NAME must be set" && exit 1

- name: Assert env.MODULE_VERSION is set
if: ${{ env.MODULE_VERSION == '' }}
run: echo "env.MODULE_VERSION must be set" && exit 1

- uses: actions/checkout@v4

- name: Setup NDK
Expand Down

0 comments on commit d9b515e

Please sign in to comment.