Skip to content

Commit

Permalink
Merge branch 'v3.x.x' into reboot/addional-registrated-gateway-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pj892031 authored Dec 13, 2024
2 parents f8dc2bd + 1106cb9 commit d9bc518
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 18 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/automated-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,16 @@ jobs:
run: |
cd onboarding-enabler-nodejs
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
echo "registry=$DIST_REGISTRY" >> ~/.npmrc
npm version ${{ github.event.inputs.scope || env.DEFAULT_SCOPE }} --allow-same-version
npm publish --access public
git add package.json
git add package-lock.json
git commit -m "[skip ci] Update version"
git push
git push --no-verify
cd ..
env:
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
DEFAULT_SCOPE: 'patch'
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
DIST_REGISTRY: https://registry.npmjs.org/

- name: Release with Gradle automatic
shell: bash
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/binary-specific-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,15 @@ jobs:
run: |
cd onboarding-enabler-nodejs
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
echo "registry=$DIST_REGISTRY" >> ~/.npmrc
npm version ${{ github.event.inputs.release_version }} --allow-same-version
npm publish --access public
git add package.json
git add package-lock.json
git commit -m "[skip ci] Update version"
git push
git push --no-verify
cd ..
env:
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
DIST_REGISTRY: https://registry.npmjs.org/

- name: Release with Gradle automatic
shell: bash
Expand Down Expand Up @@ -84,6 +80,6 @@ jobs:
caching-service/build/reports/**
api-catalog-services/build/reports/**
zaas-service/build/reports/**
/home/runner/.npm/logs/**
~/.npm/_logs
- uses: ./.github/actions/teardown
2 changes: 1 addition & 1 deletion api-catalog-ui/frontend/.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ REACT_APP_STATUS_UPDATE_MAX_RETRIES=10
REACT_APP_STATUS_UPDATE_DEBOUNCE=300
REACT_APP_CA_ENV=false
REACT_APP_STATUS_UPDATE_SCALING_DURATION=1000
REACT_APP_ZOWE_BUILD_INFO=3.0.44-SNAPSHOT
REACT_APP_ZOWE_BUILD_INFO=3.0.49-SNAPSHOT
2 changes: 1 addition & 1 deletion discovery-package/src/main/resources/bin/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fi

if [ -e "$SOURCE_FILE" ]; then
# _BPXK_AUTOCVT is set on some systems and resulted in twice-converted files when run through chtag and sed
_BPXK_AUTOCVT="OFF" sed -W filecodeset=ISO8859-1 -e "s|%ZOSMF_SCHEME%|${ZOSMF_SCHEME}|g" $SOURCE_FILE >$DEST_FILE # implicit EBCDIC out
_BPXK_AUTOCVT="ON" sed -W filecodeset=ISO8859-1 -e "s|%ZOSMF_SCHEME%|${ZOSMF_SCHEME}|g" $SOURCE_FILE >$DEST_FILE # implicit EBCDIC out
iconv -f IBM-1047 -t ISO8859-1 $DEST_FILE >$SOURCE_FILE
_BPXK_AUTOCVT="OFF" chtag -tc ISO8859-1 $SOURCE_FILE
rm -f $DEST_FILE
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ artifactoryPublishingMavenRepo=https://zowe.jfrog.io/zowe/libs-release-local
artifactoryPublishingMavenSnapshotRepo=https://zowe.jfrog.io/zowe/libs-snapshot-local

# Artifacts version
version=3.0.44-SNAPSHOT
version=3.0.49-SNAPSHOT

defaultSpringBootVersion=2.0.2.RELEASE
defaultSpringBootCloudVersion=2.0.0.RELEASE
Expand Down
2 changes: 1 addition & 1 deletion onboarding-enabler-nodejs/.npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
legacy-peer-deps=true
registry=https://zowe.jfrog.io/artifactory/api/npm/npm-org
registry=https://registry.npmjs.org/
4 changes: 2 additions & 2 deletions onboarding-enabler-nodejs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion onboarding-enabler-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zowe/apiml-onboarding-enabler-nodejs",
"version": "3.0.44",
"version": "3.0.48",
"description": "NodeJS enabler for Zowe API Mediation Layer",
"type": "module",
"main": "src/index.js",
Expand Down

0 comments on commit d9bc518

Please sign in to comment.