taiki-e / create-gh-release-action

GitHub Action for creating GitHub Releases based on changelog.
Apache License 2.0
72 stars 11 forks source link

Option to create a tag #34

Closed wiiznokes closed 2 months ago

wiiznokes commented 2 months ago

I'm used to generate release using action parameter. It would be useful to create a new tag when it doesn't exist yet

wiiznokes commented 2 months ago

Workarround:

      - run: |
          git tag ${{ github.event.inputs.tag }} || true
          git push origin --tags || true