diff --git a/.github/workflows/release-nocodb.yml b/.github/workflows/release-nocodb.yml index 908b2dac30..5f427fb0a5 100644 --- a/.github/workflows/release-nocodb.yml +++ b/.github/workflows/release-nocodb.yml @@ -12,38 +12,39 @@ on: required: true jobs: # Close all issues with target tags 'Fixed' & 'Resolved' - # TODO: add 'Fixed in vX.Y.Z' comment after closing. close-fixed-issues: needs: release-npm uses: ./.github/workflows/release-close-issue.yml with: issue_label: 'Fixed' + version: ${{ github.event.inputs.tag }} close-resolved-issues: needs: close-fixed-issues uses: ./.github/workflows/release-close-issue.yml with: issue_label: 'Resolved' + version: ${{ github.event.inputs.tag }} # Build, install, publish frontend and backend to npm release-npm: uses: ./.github/workflows/release-npm.yml with: - tag: tag + tag: ${{ github.event.inputs.tag }} # Draft Release Note release-draft-note: needs: close-issues uses: ./.github/workflows/release-draft.yml with: - tag: tag - prev_tag: prev_tag + tag: ${{ github.event.inputs.tag }} + prev_tag: ${{ github.event.inputs.prev_tag }} # Build docker image and push to docker hub release-docker: needs: release-draft-note uses: ./.github/workflows/release-docker.yml with: - tag: tag + tag: ${{ github.event.inputs.tag }} # Sync changes to develop sync-to-develop: