GitHub Auto Publish
ActionsAutomate publish a GitHub release if find an unpublished version in CHANGELOG.md (Keep a Changelog format).
v1.0.0
LatestBy alirezatheh
Tags
(2)GitHub action to automate publish a GitHub release if find an unpublished
version in CHANGELOG.md
(Keep a Changelog format).
name: Publish
on:
push:
branches:
- main
workflow_dispatch:
jobs:
github-publish:
runs-on: ubuntu-latest
steps:
- uses: alirezatheh/github-auto-publish@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
files: ./dist/*.zipThe action assume:
- Python and pip are installed (e.g. by
actions/setup-python@v3).
github-token: GitHub token (required).files: Files to be uploaded as release assets (optional).
This action is inspired by pypi-auto-publish
GitHub Auto Publish 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.