From f8b4449b7b9cb4b5f783c085e1fd5d4e264a9165 Mon Sep 17 00:00:00 2001 From: James Struga Date: Tue, 29 Aug 2023 13:47:09 -0400 Subject: [PATCH] Fix version and process Signed-off-by: James Struga --- .github/workflows/build_test.yml | 14 +++++++------- build/component/package.json | 2 +- manifest.yaml | 2 +- pluginDefinition.json | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index ea6ea44..d19f1f9 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -129,8 +129,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: @@ -142,12 +148,6 @@ jobs: publish-registry-email: ${{ secrets.NPM_PRIVATE_REGISTRY_EMAIL }} publish-registry-username: ${{ secrets.NPM_PRIVATE_REGISTRY_USERNAME }} publish-registry-password: ${{ secrets.NPM_PRIVATE_REGISTRY_PASSWORD }} - - - name: '[Prep 10] 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 11] Publish NPM Package ' if: ${{ github.event.inputs.PERFORM_RELEASE == 'true' && env.RELEASE == 'true' }} diff --git a/build/component/package.json b/build/component/package.json index e9710d4..708091c 100644 --- a/build/component/package.json +++ b/build/component/package.json @@ -1,6 +1,6 @@ { "name": "iframe-sample", - "version": "2.10.0", + "version": "2.11.0", "description": "Sample app Showcasing Iframe Adapter", "main": "iframe-sample.pax", "homepgae": "https://zowe.org", diff --git a/manifest.yaml b/manifest.yaml index cff7431..558db40 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -2,7 +2,7 @@ name: iframe-sample id: org.zowe.zlux.sample.iframe # Without the v -version: 2.10.0 +version: 2.11.0 # Human readable component name title: IFrame Sample # Human readable component description diff --git a/pluginDefinition.json b/pluginDefinition.json index f49f993..25724bf 100644 --- a/pluginDefinition.json +++ b/pluginDefinition.json @@ -1,7 +1,7 @@ { "identifier": "org.zowe.zlux.sample.iframe", "apiVersion": "2.0.0", - "pluginVersion": "2.10.0", + "pluginVersion": "2.11.0", "license": "EPL-2.0", "author": "Zowe", "homepage": "https://github.com/zowe/sample-iframe-app",