Release #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Release | |
on: | |
push: | |
tags: | |
- 'v*' # Change 'main' to your default branch name | |
jobs: | |
build: | |
runs-on: ubuntu-latest # You can use other runners like macOS or Windows | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
# Add steps here to build and test your code, if required. | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x # Specify the Python version you need | |
- name: "Build Changelog" | |
id: build_changelog | |
uses: mikepenz/release-changelog-builder-action@{latest-release} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} # Specify the version number you want to release | |
release_name: Release ${{ github.ref }} | |
body: | | |
Add release notes here | |
You can also include links to the artifacts like mvn jar and pypi package. | |
draft: false | |
prerelease: false | |
# Add steps here to upload any additional artifacts (e.g., mvn jar, pypi package, etc.) if required. |