30 lines
733 B
YAML
30 lines
733 B
YAML
name: Check Apps Version
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
check_apps_version:
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
matrix:
|
|
erl_otp:
|
|
- erl23.2.7.2-emqx-3
|
|
os:
|
|
- ubuntu20.04
|
|
|
|
container: emqx/build-env:${{ matrix.erl_otp }}-${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0 # need full history
|
|
- name: Check relup (ce)
|
|
if: endsWith(github.repository, 'emqx')
|
|
run: ./scripts/update-appup.sh emqx --check
|
|
- name: Check relup (ee)
|
|
if: endsWith(github.repository, 'enterprise')
|
|
run: ./scripts/update-appup.sh emqx-ee --check
|
|
- name: Check apps version
|
|
run: ./scripts/apps-version-check.sh
|