Skip to content

Commit

Permalink
chore: add semantic release GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Feb 22, 2024
1 parent 60f15b7 commit 204c7a7
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/semantic_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: semantic_release

# define when this workflow is triggered
on:
workflow_dispatch:
push:
branches:
- main

jobs:
# update the changelog and create a commit
changelog:
name: Changelog
runs-on: ubuntu-latest
steps:
# checkout the repo and supply a PAT for the changelog update commit.
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{secrets.PAT}}
# ref: ${{ github.head_ref || github.ref_name }}
- name: update changelog
run: |
pip install -U pip
pip install python-semantic-release >=8
semantic-release changelog
# Commits files to repository
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: semantic-release
message: "chore: automatically updating changelog [skip ci]"
add: "./CHANGELOG.md"
# determine appropriate version number, update changelog, and create a release commit
semantic-release:
name: Semantic Release
runs-on: ubuntu-latest
# concurrency: release
permissions:
id-token: write
contents: write
steps:
# checkout the repo and supply a PAT for the changelog update commit.
- id: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{secrets.PAT}}

# use semantic-release
- id: semantic-release
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.PAT }}
changelog: "true"
push: "true"

0 comments on commit 204c7a7

Please sign in to comment.