From 6b8f0f61681643788e3740485f4f53434c85ca5b Mon Sep 17 00:00:00 2001 From: qthequartermasterman Date: Tue, 3 Oct 2023 20:37:56 -0500 Subject: [PATCH] ci: semantic-release --- .github/semantic-release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/semantic-release.yml diff --git a/.github/semantic-release.yml b/.github/semantic-release.yml new file mode 100644 index 0000000..3349c8a --- /dev/null +++ b/.github/semantic-release.yml @@ -0,0 +1,24 @@ +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 + + - name: Python Semantic Release + uses: python-semantic-release/python-semantic-release@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file