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: 4 months ago
JSON representation
📢 Publish your GitHub Action
- Host: GitHub
- URL: https://github.com/tgymnich/publish-github-action
- Owner: tgymnich
- License: mit
- Created: 2019-09-24T13:55:29.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-02-11T20:37:31.000Z (over 2 years ago)
- Last Synced: 2025-10-22T22:58:07.700Z (8 months ago)
- Topics: actions, deploy, github-actions, octokit, publish
- Language: JavaScript
- Homepage:
- Size: 2.95 MB
- Stars: 11
- Watchers: 1
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Publish GitHub Action

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