From cd088d250055e7da39e4eccf4255985762dfd614 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien?= Date: Sat, 8 Apr 2023 12:23:37 -0400 Subject: [PATCH] Update Platform_build.yml [skip actions] --- .github/workflows/Platform_build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Platform_build.yml b/.github/workflows/Platform_build.yml index b166410c..87d0fea9 100644 --- a/.github/workflows/Platform_build.yml +++ b/.github/workflows/Platform_build.yml @@ -13,7 +13,8 @@ on: description: 'Force a Release build. When not forced, the system will check for release word in the last commit message to trigger a release' required: true type: boolean - +env: + WEB_INSTALLER: ${{ secrets.WEB_INSTALLER }} jobs: bootstrap: name: Global setup @@ -228,5 +229,9 @@ jobs: update_web_installer: name: Update Web Installer After Release needs: [ bootstrap, build ] - if: ${{( always() && !cancelled() ) && needs.bootstrap.outputs.release_flag == 1 && needs.bootstrap.outputs.mock == 0 }} + if: ${{ always() && !cancelled() && needs.bootstrap.outputs.release_flag == 1 && needs.bootstrap.outputs.mock == 0 }} uses: ./.github/workflows/web_deploy.yml + with: + web_installer_token: ${{ secrets.WEB_INSTALLER }} + +