set build_type

This commit is contained in:
Ishan09811 2024-04-10 17:21:28 +05:30 committed by GitHub
parent f96abfb274
commit b0b86ed941
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -157,7 +157,15 @@ jobs:
HTTP-Server-Build:
runs-on: ubuntu-latest
strategy:
matrix:
build_type:
- release
steps:
- name: Set BUILD_TYPE variable
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Fetch submodules
run: git submodule update --init --recursive
@ -187,7 +195,15 @@ jobs:
MacOs-Build:
runs-on: macos-latest
strategy:
matrix:
build_type:
- release
steps:
- name: Set BUILD_TYPE variable
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Fetch submodules
run: git submodule update --init --recursive
@ -229,7 +245,15 @@ jobs:
Linux-AppImage-Build:
runs-on: ubuntu-20.04
strategy:
matrix:
build_type:
- release
steps:
- name: Set BUILD_TYPE variable
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Fetch submodules
run: git submodule update --init --recursive
@ -271,7 +295,15 @@ jobs:
Linux-Build:
runs-on: ubuntu-latest
strategy:
matrix:
build_type:
- release
steps:
- name: Set BUILD_TYPE variable
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
- uses: actions/checkout@v2
- name: Fetch submodules
run: git submodule update --init --recursive