Browse Source

fix: add bumpNocodbSdkVersion to release-docker

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
pull/1632/head
Wing-Kam Wong 3 years ago
parent
commit
73eb0cb63a
  1. 4
      .github/workflows/release-docker.yml

4
.github/workflows/release-docker.yml

@ -76,6 +76,10 @@ jobs:
- name: upgrade packages for nightly build
if: ${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }}
run: |
targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js
cd packages/nocodb-sdk
npm install && npm run build
cd ../..
targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNocodbSdk.js
cd packages/nc-gui
npm install

Loading…
Cancel
Save