Publish GitHub Action
ActionsTags
(2)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.
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 }}
Publish GitHub Action 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.