/Github-Release-Action

Publish Github releases in an action

Primary LanguageDockerfileMIT LicenseMIT

Github-Release-Action

Actions Status Actions Status

Publish Github releases

Usage

name: Publish Release

on:
  push:
    tags:
      - 'v*'

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Create a Release
      uses: elgohr/Github-Release-Action@master
      env:
        GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
      with:
        args: MyReleaseMessage

Please note, that you can't use ${{ secrets.GITHUB_TOKEN }} as it isn't allowed to publish releases.

Argument

The message which should appear in the release. May not contain spaces.