Browse Source

ci: 2nd try at matrix condition

pull/2552/head
Maxim Prokhorov 1 year ago
parent
commit
8a218aefab
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .github/workflows/push.yml

+ 2
- 2
.github/workflows/push.yml View File

@ -78,11 +78,11 @@ jobs:
run: |
git config --global advice.detachedHead false
./ci_install.sh build ${{ matrix.env }}
- if: ${{ matrix.env }} == 'nodemcu-lolin'
- if: ${{ matrix.env == 'nodemcu-lolin' }}
name: Basic build
run: |
./ci_script.sh build ${{ matrix.env }}
- if: ${{ matrix.env }} != 'nodemcu-lolin'
- if: ${{ endsWith(matrix.env, '-base') }}
name: Test build
run: |
./ci_script.sh test ${{ matrix.env }}

Loading…
Cancel
Save