From c1d3c0d1a3d216db42a6e8ea16c751b3d16899cb Mon Sep 17 00:00:00 2001 From: James Struga Date: Tue, 29 Aug 2023 13:55:49 -0400 Subject: [PATCH] Fix version and process Signed-off-by: James Struga --- .github/workflows/build_test.yml | 16 ++++++++-------- build/component/package.json | 2 +- manifest.yaml | 2 +- nodeServer/package.json | 2 +- pluginDefinition.json | 2 +- webClient/package.json | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 955185b..cf25768 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -85,8 +85,14 @@ jobs: - name: '[Prep 8] Deploy ' uses: zowe-actions/zlux-builds/plugins/deploy-pax@v2.x/main + + - name: '[Prep 9] Bump Staging Version ' + if: ${{ github.event.inputs.PERFORM_RELEASE == 'true' && env.RELEASE == 'true' }} + uses: zowe-actions/zlux-builds/plugins/bump-version@v2.x/main + env: + GITHUB_TOKEN: ${{ secrets.ZOWE_ROBOT_TOKEN }} - - name: '[Prep 9] NodeJS project setup' + - name: '[Prep 10] NodeJS project setup' if: ${{ github.event.inputs.PERFORM_RELEASE == 'true' && env.RELEASE == 'true' }} uses: zowe-actions/zlux-builds/plugins/npm-setup@v2.x/main with: @@ -99,12 +105,6 @@ jobs: publish-registry-username: ${{ secrets.NPM_PRIVATE_REGISTRY_USERNAME }} publish-registry-password: ${{ secrets.NPM_PRIVATE_REGISTRY_PASSWORD }} - - name: '[Prep 10] Publish NPM Package ' + - name: '[Prep 11] Publish NPM Package ' if: ${{ github.event.inputs.PERFORM_RELEASE == 'true' && env.RELEASE == 'true' }} uses: zowe-actions/zlux-builds/plugins/npm-publish@v2.x/main - - - name: '[Prep 11] Bump Staging Version ' - if: ${{ github.event.inputs.PERFORM_RELEASE == 'true' && env.RELEASE == 'true' }} - uses: zowe-actions/zlux-builds/plugins/bump-version@v2.x/main - env: - GITHUB_TOKEN: ${{ secrets.ZOWE_ROBOT_TOKEN }} diff --git a/build/component/package.json b/build/component/package.json index e8c3f6c..7c20831 100644 --- a/build/component/package.json +++ b/build/component/package.json @@ -1,6 +1,6 @@ { "name": "angular-sample", - "version": "2.9.0", + "version": "2.11.0", "description": "Sample App Showcasing Angular Adapter", "main": "angular-sample.pax", "homepgae": "https://zowe.org", diff --git a/manifest.yaml b/manifest.yaml index b82bca8..f7e7cb1 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -2,7 +2,7 @@ name: angular-sample id: org.zowe.zlux.sample.angular # Without the v -version: 2.9.0 +version: 2.11.0 # Human readable component name title: Angular Sample # Human readable component description diff --git a/nodeServer/package.json b/nodeServer/package.json index 5c566ea..16ea89f 100644 --- a/nodeServer/package.json +++ b/nodeServer/package.json @@ -1,6 +1,6 @@ { "name": "org.zowe.zlux.sample.angular.nodeserver", - "version": "2.9.0", + "version": "2.11.0", "description": "Hello World message", "scripts": { "build": "tsc", diff --git a/pluginDefinition.json b/pluginDefinition.json index c5427d4..e3fddfd 100644 --- a/pluginDefinition.json +++ b/pluginDefinition.json @@ -1,7 +1,7 @@ { "identifier": "org.zowe.zlux.sample.angular", "apiVersion": "2.0.0", - "pluginVersion": "2.9.0", + "pluginVersion": "2.11.0", "pluginType": "application", "license": "EPL-2.0", "author": "Zowe", diff --git a/webClient/package.json b/webClient/package.json index 2fad90e..53c9fbe 100644 --- a/webClient/package.json +++ b/webClient/package.json @@ -1,6 +1,6 @@ { "name": "org.zowe.zlux.sample.angular.webclient", - "version": "2.9.0", + "version": "2.11.0", "scripts": { "start": "webpack --progress --colors --watch", "build": "webpack --progress --colors",