Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tgymnich/publish-github-action

📢 Publish your GitHub Action
https://github.com/tgymnich/publish-github-action

actions deploy github-actions octokit publish

Last synced: 6 days ago
JSON representation

📢 Publish your GitHub Action

Awesome Lists containing this project

README

        

# Publish GitHub Action
![](https://img.shields.io/github/v/release/tg908/publish-github-action?style=flat-square)

This action creates a release branch for your GitHub Actions which will be automatically tagged and released. The release version can be defined in `package.json`.

# Example Workflow

```
name: "Publish GitHub Action"
on:
push:
branches:
- master
- main

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: tgymnich/publish-github-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
```