From 1b51abc9f44da8d4be380d1883e46c9f98159ef4 Mon Sep 17 00:00:00 2001 From: Mips2648 Date: Sun, 12 May 2024 11:45:20 +0200 Subject: [PATCH] test semantic release --- .github/workflows/semantic-release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/semantic-release.yml diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml new file mode 100644 index 0000000..798730a --- /dev/null +++ b/.github/workflows/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@v4 + 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