mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
chore(CI): Don't try to upload installer on debug builds
The installer is only built on release builds. We used to ignore failure to upload prior to5fcf86b521
. We stopped ignoring becausea07ab89cc8
tried to make our upload targetted, but it only resolved the issue for the zip, not the installer.
This commit is contained in:
parent
714d8ec62b
commit
e18118c1bc
2
.github/workflows/build-test-deploy.yaml
vendored
2
.github/workflows/build-test-deploy.yaml
vendored
|
@ -345,6 +345,7 @@ jobs:
|
|||
- name: Run build
|
||||
run: docker-compose run --rm windows_builder ./windows/cross-compile/build.sh --arch x86_64 --build-type ${{ matrix.build_type }} --run-tests --src-dir /qtox
|
||||
- name: Upload installer
|
||||
if: matrix.build_type == 'release'
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: setup-qtox-x86_64-${{ matrix.build_type }}.exe
|
||||
|
@ -405,6 +406,7 @@ jobs:
|
|||
- name: Run build
|
||||
run: docker-compose run --rm windows_builder.i686 ./windows/cross-compile/build.sh --arch i686 --build-type ${{ matrix.build_type }} --run-tests --src-dir /qtox
|
||||
- name: Upload installer
|
||||
if: matrix.build_type == 'release'
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: setup-qtox-i686-${{ matrix.build_type }}.exe
|
||||
|
|
Loading…
Reference in New Issue
Block a user