From 051ee5d4be0359383eb51fbd0cab39cb71b5d727 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Tue, 18 Jul 2023 21:12:20 +0800 Subject: [PATCH] fix(workflows): incorrect job name --- .github/workflows/release-nightly-dev.yml | 10 +++++----- .github/workflows/release-nocodb.yml | 8 ++++---- .github/workflows/release-pr.yml | 10 +++++----- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release-nightly-dev.yml b/.github/workflows/release-nightly-dev.yml index bc6ca16df3..e4a66f71ce 100644 --- a/.github/workflows/release-nightly-dev.yml +++ b/.github/workflows/release-nightly-dev.yml @@ -43,10 +43,10 @@ jobs: nightly_build_tag: ${{ steps.tag-step.outputs.NIGHTLY_BUILD_TAG }} is_daily: ${{ steps.tag-step.outputs.IS_DAILY }} current_version: ${{ steps.tag-step.outputs.CURRENT_VERSION }} - # Build frontend and backend and publish to pnpm - release-pnpm: + # Build frontend and backend and publish to npm + release-npm: needs: set-tag - uses: ./.github/workflows/release-pnpm.yml + uses: ./.github/workflows/release-npm.yml with: tag: ${{ needs.set-tag.outputs.nightly_build_tag }} targetEnv: 'DEV' @@ -55,7 +55,7 @@ jobs: # Build executables and publish to GitHub release-executables: - needs: [set-tag, release-pnpm] + needs: [set-tag, release-npm] uses: ./.github/workflows/release-timely-executables.yml with: tag: ${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.nightly_build_tag }} @@ -64,7 +64,7 @@ jobs: # Build docker image and push to docker hub release-docker: - needs: [set-tag, release-pnpm] + needs: [set-tag, release-npm] uses: ./.github/workflows/release-docker.yml with: currentVersion: ${{ needs.set-tag.outputs.current_version }} diff --git a/.github/workflows/release-nocodb.yml b/.github/workflows/release-nocodb.yml index e86a1a9268..e907d9bdcd 100644 --- a/.github/workflows/release-nocodb.yml +++ b/.github/workflows/release-nocodb.yml @@ -60,10 +60,10 @@ jobs: tag: ${{ needs.process-input.outputs.target_tag }} targetEnv: ${{ github.event.inputs.targetEnv || 'PROD' }} - # Build, install, publish frontend and backend to pnpm - release-pnpm: + # Build, install, publish frontend and backend to npm + release-npm: needs: [pr-to-master, process-input] - uses: ./.github/workflows/release-pnpm.yml + uses: ./.github/workflows/release-npm.yml with: tag: ${{ needs.process-input.outputs.target_tag }} targetEnv: ${{ github.event.inputs.targetEnv || 'PROD' }} @@ -72,7 +72,7 @@ jobs: # Draft Release Note release-draft-note: - needs: [release-pnpm, process-input] + needs: [release-npm, process-input] uses: ./.github/workflows/release-draft.yml with: tag: ${{ needs.process-input.outputs.target_tag }} diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index 6ff09bc5c1..86da07b0ef 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -46,11 +46,11 @@ jobs: target_tag: ${{ steps.tag-step.outputs.TARGET_TAG }} current_version: ${{ steps.tag-step.outputs.CURRENT_VERSION }} - # Build, install, publish frontend and backend to pnpm - release-pnpm: + # 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-pnpm.yml + uses: ./.github/workflows/release-npm.yml with: tag: ${{ needs.set-tag.outputs.target_tag }} targetEnv: 'DEV' @@ -60,7 +60,7 @@ jobs: # 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-pnpm, set-tag] + needs: [release-npm, set-tag] uses: ./.github/workflows/release-docker.yml with: currentVersion: ${{ needs.set-tag.outputs.current_version }} @@ -74,7 +74,7 @@ jobs: # Build executables and publish to GitHub # release-executables: # 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, release-pnpm] + # needs: [set-tag, release-npm] # uses: ./.github/workflows/release-timely-executables.yml # with: # tag: ${{ needs.set-tag.outputs.current_version }}-${{ needs.set-tag.outputs.target_tag }}