2.3.0 • Published 1 year ago

github-actions-releaser v2.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Inputs

KeyDescriptionRequiredType
GITHUB_TOKENThe github TokenTRUESECRET
TAG_NAMEThe new tag name. Do not use it if you want to auto taggingFALSEString

Example usage

Create the file workflow.yml in .github/workflows folder.

name: Release
on:
  push:
    tags:
      - 'v*'
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Generate release notes
        uses: raulanatol/github-actions-releaser@main
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

With custom tag name

name: Release
on:
  push:
    tags:
      - 'v*'
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Generate release notes
        uses: raulanatol/github-actions-releaser@main
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          TAG_NAME: vTestName

Example projects

2.3.0

1 year ago

2.2.0

2 years ago

2.1.0

3 years ago

1.5.0

3 years ago

2.0.0

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.2.1

3 years ago