softprops 7250d20037 docs
2019-08-25 22:32:14 -04:00
2019-08-25 22:20:15 -04:00
2019-08-25 02:13:05 -04:00
2019-08-25 02:13:05 -04:00
2019-08-25 02:13:05 -04:00
lic
2019-08-25 02:17:01 -04:00
2019-08-25 22:32:14 -04:00
2019-08-25 02:13:05 -04:00

action gh-release

A Github Action for creating Github Releases

Usage

name: Main

on: push

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@master
      - name: Build
        run: echo ${{ github.sha }} > Release.txt
      - name: Release
        uses: docker://softprops/action-gh-release
        if: startsWith(github.ref, 'refs/tags/')
        with:
          files: Release.txt
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

inputs

Name Type Description
body String text communicating notable changes in this release
draft Boolean indicator of whether or not this release is a draft
files String comma-delimited globs of paths to assets to upload for release
name String name of the release. defaults to tag name

environment variables

Name Description
GITHUB_TOKEN GITHUB_TOKEN as provided by secrets

Doug Tangren (softprops) 2019

Description
📦 :octocat: GitHub Action for creating GitHub Releases
Readme MIT 7.4 MiB
Languages
TypeScript 100%