Apply correct network setting during linux builds (#4351)
* fix env variables
This is what was previously set as env variables
```env:
artifact: 1
NETWORK: BETA \
CI_TAG: V26.0DB34 \
```
Fix:
```env:
artifact: 1
NETWORK: BETA
CI_TAG: V26.0DB34
```
* formatting
This commit is contained in:
parent
220ac3de02
commit
eede334203
1 changed files with 12 additions and 12 deletions
4
.github/workflows/artifacts_build_deploy.yml
vendored
4
.github/workflows/artifacts_build_deploy.yml
vendored
|
|
@ -83,8 +83,8 @@ jobs:
|
||||||
- name: Build Artifact
|
- name: Build Artifact
|
||||||
run: ci/build-deploy.sh "/usr/lib/x86_64-linux-gnu/cmake/Qt5"
|
run: ci/build-deploy.sh "/usr/lib/x86_64-linux-gnu/cmake/Qt5"
|
||||||
env:
|
env:
|
||||||
NETWORK: ${{ matrix.network }} \
|
NETWORK: ${{ matrix.network }}
|
||||||
CI_TAG: ${{ needs.prepare_build.outputs.CI_TAG }} \
|
CI_TAG: ${{ needs.prepare_build.outputs.CI_TAG }}
|
||||||
|
|
||||||
- name: Deploy Artifact
|
- name: Deploy Artifact
|
||||||
run: ci/actions/deploy.sh
|
run: ci/actions/deploy.sh
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue