Skip to content

LogicOverSnacks/actions-publish

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 }}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published