From 70631d04657b169f3304c22336ae2ec22fdc61cd Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Fri, 17 Jan 2025 16:42:21 +0100 Subject: [PATCH] chore: setup ci --- .github/workflows/release.yaml | 50 ++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..9b6d8f7 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,50 @@ +name: Continuous Delivery + +on: + push: + branches: + - master + - chore/ci-setup + +jobs: + release: + runs-on: ubuntu-latest + concurrency: release + + permissions: + id-token: write + contents: write + + steps: + # Note: we need to checkout the repository at the workflow sha in case during the workflow + # the branch was updated. To keep PSR working with the configured release branches, + # we force a checkout of the desired release branch but at the workflow sha HEAD. + - name: Setup | Checkout Repository at workflow sha + uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: ${{ github.sha }} + + - name: Setup | Force correct release branch on workflow sha + run: | + git checkout -B ${{ github.ref_name }} ${{ github.sha }} + + - name: Action | Semantic Version Release + id: release + # Adjust tag with desired version if applicable. + uses: python-semantic-release/python-semantic-release@v9.16.1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + git_committer_name: "github-actions" + git_committer_email: "actions@users.noreply.github.com" + + # - name: Publish | Upload package to PyPI + # uses: pypa/gh-action-pypi-publish@v1 + # if: steps.release.outputs.released == 'true' + + - name: Publish | Upload to GitHub Release Assets + uses: python-semantic-release/publish-action@v9.16.1 + if: steps.release.outputs.released == 'true' + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ steps.release.outputs.tag }}