correct conditional syntax

release/4.3a0
Varun Agrawal 2020-11-19 14:58:50 -05:00
parent 9e2007562a
commit 99e3a111e1
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ jobs:
bash .github/scripts/unix.sh -t
- name: Upload build directory
uses: actions/upload-artifact@v2
if: ${{ matrix.build_type }} == "Release"
if: ${{ matrix.build_type == "Release" }}
with:
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/build/

View File

@ -53,7 +53,7 @@ jobs:
bash .github/scripts/unix.sh -t
- name: Upload build directory
uses: actions/upload-artifact@v2
if: ${{ matrix.build_type }} == "Release"
if: ${{ matrix.build_type == "Release" }}
with:
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/build/

View File

@ -78,7 +78,7 @@ jobs:
cmake --build build --config ${{ matrix.build_type }} --target check.linear
- name: Upload build directory
uses: actions/upload-artifact@v2
if: ${{ matrix.build_type }} == "Release"
if: ${{ matrix.build_type == "Release" }}
with:
name: gtsam-${{ matrix.name }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/build/