Skip to content

Poltio/action-release

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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 }}

About

Release action to create a new tag and a release based on tag after PR merge events.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages