Skip to content

Commit

Permalink
feat(ci): add semantic-release workflow (#16)
Browse files Browse the repository at this point in the history
* feat(ci): add semantic-release

* feat(ci): add semantic-release
  • Loading branch information
iftahnaf authored Nov 3, 2023
1 parent 48f3384 commit b9c59b9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 28 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/docker-image.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Semantic Release

on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.SEMANTIC_RELEASE_ACCESS_TOKEN }}

- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.SEMANTIC_RELEASE_ACCESS_TOKEN }}

0 comments on commit b9c59b9

Please sign in to comment.