Browse Source

fix: variable syntax & pass version to release-close-issue

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
pull/1281/head
Wing-Kam Wong 3 years ago
parent
commit
bb7f3e38c4
  1. 11
      .github/workflows/release-nocodb.yml

11
.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:

Loading…
Cancel
Save