Browse Source

chore(github-actions): release draft action corrections

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
pull/359/head
Pranav C 3 years ago
parent
commit
0cbf324ef4
  1. 5
      .github/workflows/release-draft.yml

5
.github/workflows/release-draft.yml

@ -6,6 +6,9 @@ on:
tag: tag:
description: "Tag" description: "Tag"
required: true required: true
prev_tag:
description: "Previous Tag"
required: true
jobs: jobs:
build: build:
@ -30,4 +33,4 @@ jobs:
- uses: actions/setup-node@v2 - uses: actions/setup-node@v2
with: with:
node-version: 14 node-version: 14
- run: "npx github-release-notes@0.17.2 release --token ${{ secrets.GH_TOKEN }} --draft" - run: "npx github-release-notes@0.17.2 release --token ${{ secrets.GH_TOKEN }} --draft --tags ${{ github.event.inputs.tag }}..${{ github.event.inputs.prev_tag }}"

Loading…
Cancel
Save