From e730645db1c1e945d98dd7be3b1cdf6bcaebaf73 Mon Sep 17 00:00:00 2001 From: Stefano Bertelli Date: Mon, 5 Aug 2024 21:23:59 -0500 Subject: [PATCH] fix: add release process for simple branch --- .github/workflows/simple.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/simple.yml diff --git a/.github/workflows/simple.yml b/.github/workflows/simple.yml new file mode 100644 index 0000000..c451b13 --- /dev/null +++ b/.github/workflows/simple.yml @@ -0,0 +1,23 @@ +name: Semantic Release + +on: + push: + branches: + - simple + +jobs: + release: + runs-on: ubuntu-latest + concurrency: release + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Python Semantic Release + uses: relekang/python-semantic-release@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + repository_username: __token__ + repository_password: ${{ secrets.PYPI_TOKEN }}