Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update v3 with new actions #68

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build vt2-ng2 workflow
on:
push:
branches:
- v2.x/staging
- v2.x/rc
- v2.x/master
- v3.x/staging
- v3.x/rc
- v3.x/master
pull_request:
types: [opened, reopened, synchronize]

Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
JF_ARTIFACTORY_1: ${{ secrets.JF_ARTIFACTORY_TOKEN }}

- name: '[Prep 5] prepare workflow'
uses: zowe-actions/zlux-builds/plugins/prepare-workflow@v2.x/main
uses: zowe-actions/zlux-builds/plugins/prepare-workflow@v3.x/main
with:
github-user: ${{ secrets.ZOWE_ROBOT_USER }}
github-password: ${{ secrets.ZOWE_ROBOT_TOKEN }}
Expand All @@ -155,22 +155,22 @@ jobs:
plugin-version: ${{ github.event.inputs.BUILD_VERSION }}

- name: '[Prep 6] build'
uses: zowe-actions/zlux-builds/plugins/zlux-plugins@v2.x/main
uses: zowe-actions/zlux-builds/plugins/zlux-plugins@v3.x/main
with:
build-zss: false

- name: '[Prep 7] packaging'
uses: zowe-actions/zlux-builds/plugins/make-pax@v2.x/main
uses: zowe-actions/zlux-builds/plugins/make-pax@v3.x/main
with:
pax-ssh-username: ${{ secrets.SSH_MARIST_USERNAME }}
pax-ssh-password: ${{ secrets.SSH_MARIST_RACF_PASSWORD }}
pax-name: vt2-ng2

- name: '[Prep 8] deploy '
uses: zowe-actions/zlux-builds/plugins/deploy-pax@v2.x/main
uses: zowe-actions/zlux-builds/plugins/deploy-pax@v3.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
uses: zowe-actions/zlux-builds/plugins/bump-version@v3.x/main
env:
GITHUB_TOKEN: ${{ secrets.ZOWE_ROBOT_TOKEN }}
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: vt-ng2
id: org.zowe.terminal.vt
# Without the v
version: 2.13.0
version: 3.0.0
# Human readable component name
title: VT Terminal
# Human readable component description
Expand Down
2 changes: 1 addition & 1 deletion pluginDefinition.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"identifier": "org.zowe.terminal.vt",
"apiVersion": "2.0.0",
"pluginVersion": "2.13.0",
"pluginVersion": "3.0.0",
"pluginType": "application",
"license": "EPL-2.0",
"author": "Zowe",
Expand Down
2 changes: 1 addition & 1 deletion webClient/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "org.zowe.terminal.vt",
"version": "2.7.0",
"version": "3.0.0",
"description": "A Zowe App for SSH and Telnet Terminal Emulation",
"author": "Zowe",
"homepage": "https://github.com/zowe/vt-ng2",
Expand Down
Loading