Skip to content
Use this GitHub Action with your project

Add this Action to an existing workflow or create a new one.

View on Marketplace
master
Go to file
Code

Files

Permalink
Failed to load latest commit information.

README.md

Github-Release-Action

Actions Status Actions Status

Publish Github releases

Usage

name: Publish Release
on: [push]
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

You can’t perform that action at this time.