diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index adc17aacee..a4915919be 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -43,7 +43,7 @@ jobs: buildx: runs-on: ubuntu-latest env: - working-directory: ./packages/nocodb + working-directory: ./packages/nocodb-nest steps: - name: Get Docker Repository id: get-docker-repository @@ -58,7 +58,7 @@ jobs: if [[ ${{ github.event.inputs.currentVersion || inputs.currentVersion || 'N/A' }} != 'N/A' ]]; then DOCKER_BUILD_TAG=${{ github.event.inputs.currentVersion || inputs.currentVersion }}-${{ github.event.inputs.tag || inputs.tag }} fi - if [[ ${{ inputs.isDaily || 'N' }} == 'Y' ]]; then + if [[ ${{ inputs.isDaily || 'N' }} == 'Y' ]]; then DOCKER_REPOSITORY=${DOCKER_REPOSITORY}-daily else DOCKER_REPOSITORY=${DOCKER_REPOSITORY}-timely @@ -90,7 +90,7 @@ jobs: cd packages/nocodb-sdk npm install && npm run build cd ../.. - targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNocodbSdk.js && + targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNocodbSdk.js && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNcGuiVersion.js && cd packages/nc-gui npm install @@ -104,7 +104,6 @@ jobs: - name: Build nocodb and docker files run: | - npm run build npm run docker:build working-directory: ${{ env.working-directory }} diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 55ec46d9af..3ebd6fc7e2 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -35,7 +35,7 @@ jobs: release: runs-on: ubuntu-latest env: - working-directory: ./packages/nocodb + working-directory: ./packages/nocodb-nest steps: - name: Checkout uses: actions/checkout@v3 @@ -62,7 +62,7 @@ jobs: targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} npm run build:copy:publish && cd ../.. && sleep 60 && - targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNcGui.js && cd packages/nocodb && npm install && npm run obfuscate:build:publish + targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNcGui.js && cd packages/nocodb-nest && npm install && npm run obfuscate:build:publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Create Pull Request diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index d29e6b7a17..0eb1a0393d 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -13,6 +13,7 @@ on: - "packages/nc-gui/**" - "packages/nc-plugin/**" - "packages/nocodb/**" + - "packages/nocodb-nest/**" concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} @@ -116,13 +117,13 @@ jobs: - name: Upload Rendered Compose File as Artifact uses: actions/upload-artifact@v3 with: - name: preview-spec + name: preview-spec path: docker-compose.rendered.yml retention-days: 2 - name: Serialize PR Event to File run: | cat << EOF > event.json - ${{ toJSON(github.event) }} + ${{ toJSON(github.event) }} EOF - name: Upload PR Event as Artifact uses: actions/upload-artifact@v3 @@ -130,7 +131,7 @@ jobs: name: preview-spec path: event.json retention-days: 2 - + # Add a comment for PR executable build # leave-executable-comment: # if: ${{ github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false && github.base_ref == 'develop' && github.event.action != 'closed' }} @@ -177,12 +178,12 @@ jobs: - name: Serialize PR Event to File run: | cat << EOF > event.json - ${{ toJSON(github.event) }} - + ${{ toJSON(github.event) }} + EOF - name: Upload PR Event as Artifact uses: actions/upload-artifact@v3 with: name: preview-spec path: event.json - retention-days: 2 \ No newline at end of file + retention-days: 2 diff --git a/packages/nc-gui/components/cell/Currency.vue b/packages/nc-gui/components/cell/Currency.vue index ee025aa9a2..e2ea7a9e77 100644 --- a/packages/nc-gui/components/cell/Currency.vue +++ b/packages/nc-gui/components/cell/Currency.vue @@ -1,6 +1,6 @@