Skip to content

Commit

Permalink
Make the darn thing upload the VSIX
Browse files Browse the repository at this point in the history
Signed-off-by: Katelyn Nienaber <katelyn.nienaber@broadcom.com>
  • Loading branch information
katelynienaber committed Aug 26, 2021
1 parent 7719c3f commit 4b96660
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit 4b96660

Please sign in to comment.