Skip to content

Create a new Version Tag and Release

Actions

About

Increases semver number and creates a new tag and github release based on tag
v0.0.18
Latest
Star (1)

Create New Release & Tag

You can use this action to tag a new release after each Pull Request is closed.

Inputs

token

(required) github token to use to create a new tag and release

example yaml file:

name: Create new version
on:
  pull_request:
    types: [closed]

jobs:
  release:
    runs-on: ubuntu-latest
    name: Create a new release

    if: github.event.pull_request.merged

    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - id: release
        uses: poltio/action-release@v0
        with:
          token: ${{ secrets.GITHUB_TOKEN }}

Create a new Version Tag and Release is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Increases semver number and creates a new tag and github release based on tag
v0.0.18
Latest

Create a new Version Tag and Release is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.