From 4b96660d4d1c2bd3922dbe9b02a6a36497920488 Mon Sep 17 00:00:00 2001 From: Katelyn Nienaber Date: Thu, 26 Aug 2021 14:48:11 +0200 Subject: [PATCH] Make the darn thing upload the VSIX Signed-off-by: Katelyn Nienaber --- .github/workflows/deployment.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index be3cca4131..2d254f7c35 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -180,9 +180,7 @@ jobs: prerelease: false - name: Upload the Zowe Explorer Assets - if: | - steps.check_project.outputs.version_bumped && - steps.deploy_zowe_explorer.outputs.archive != null + if: steps.check_project.outputs.version_bumped uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -193,9 +191,7 @@ jobs: asset_content_type: application/octet-stream - name: Upload the FTP Extension for Zowe Explorer Assets - if: | - steps.check_project.outputs.version_bumped && - steps.deploy_zowe_explorer_ftp_extension.outputs.archive != null + if: steps.check_project.outputs.version_bumped uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -206,9 +202,7 @@ jobs: asset_content_type: application/octet-stream - name: Upload the Zowe Explorer APIs Assets - if: | - steps.check_project.outputs.version_bumped && - steps.deploy_zowe_explorer_api.outputs.archive != null + if: steps.check_project.outputs.version_bumped uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -219,9 +213,7 @@ jobs: asset_content_type: application/octet-stream - name: Upload the ESLint plugin for Zowe Explorer Assets - if: | - steps.check_project.outputs.version_bumped && - steps.deploy_eslint_plugin_zowe_explorer.outputs.archive != null + if: steps.check_project.outputs.version_bumped uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}