Skip to content

Publish Github Release

Actions

About

A GitHub Action to publish the latest draft release
v3
Latest
Star (0)

Tags

 (1)

actions-publish

A Github action to publish the latest draft release.

Usage

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - name: Create Release
        id: create_release
        uses: actions/create-release@v1
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          tag_name: test
          release_name: Test
          draft: true
      - name: Publish latest draft release
        uses: logicoversnacks/actions-publish@v3
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN  }}
        with:
          repo: ${{ github.repository }}

Publish Github Release is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

A GitHub Action to publish the latest draft release
v3
Latest

Tags

 (1)

Publish Github Release is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.