Browse Source

chore: remove npm release from action

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/9645/head
Pranav C 1 month ago
parent
commit
4dcd6301bd
  1. 2
      .github/workflows/release-nightly-dev.yml
  2. 13
      .github/workflows/release-pr.yml
  3. 2
      .github/workflows/release-timely-docker.yml

2
.github/workflows/release-nightly-dev.yml

@ -55,7 +55,7 @@ jobs:
# Build docker image and push to docker hub
release-docker:
needs: [set-tag, release-npm]
needs: [set-tag]
uses: ./.github/workflows/release-timely-docker.yml
with:
currentVersion: ${{ needs.set-tag.outputs.current_version }}

13
.github/workflows/release-pr.yml

@ -50,21 +50,10 @@ jobs:
target_tag: ${{ steps.tag-step.outputs.TARGET_TAG }}
current_version: ${{ steps.tag-step.outputs.CURRENT_VERSION }}
# Build, install, publish frontend and backend to npm
release-npm:
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' }}
needs: [set-tag]
uses: ./.github/workflows/release-npm.yml
with:
tag: ${{ needs.set-tag.outputs.target_tag }}
targetEnv: 'DEV'
secrets:
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
# Build docker image and push to docker hub
release-docker:
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' }}
needs: [release-npm, set-tag]
needs: [set-tag]
uses: ./.github/workflows/release-docker.yml
with:
currentVersion: ${{ needs.set-tag.outputs.current_version }}

2
.github/workflows/release-timely-docker.yml

@ -97,7 +97,7 @@ jobs:
pnpm run generate
# copy build to nocodb
rsync -rvzh ./ee/dist/ ../nocodb/docker/nc-gui/
rsync -rvzh ./dist/ ../nocodb/docker/nc-gui/
- name: build nocodb

Loading…
Cancel
Save