From df09dfa643fd0c91410b3b64ad1a45dfa79b5bce Mon Sep 17 00:00:00 2001 From: Michelle Ark Date: Mon, 29 Jan 2024 16:30:55 -0500 Subject: [PATCH] initial release workflow (#40) --- .github/workflows/release.yml | 62 +++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..ad581c99 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,62 @@ +name: Release + +on: + workflow_dispatch: + inputs: + deploy-to: + type: choice + description: Choose where to publish (test/prod) + options: + - PypiProd + - PypiTest + default: PypiTest + +permissions: read-all + +defaults: + run: + shell: bash + +# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise +concurrency: + group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }} + cancel-in-progress: true + +jobs: + + release: + name: PyPI - ${{ inputs.deploy-to }} + runs-on: ubuntu-latest + environment: + name: ${{ inputs.deploy-to }} + permissions: + id-token: write # IMPORTANT: this permission is mandatory for trusted publishing + + steps: + - name: Check out repository + uses: actions/checkout@v4 + with: + persist-credentials: false + + - name: "Set up Python & Hatch - 3.11" + uses: ./.github/actions/setup-python-hatch + with: + python-version: "3.11" + + - name: Build artifacts + run: hatch build + shell: bash + + - name: Check artifacts + run: hatch run build:check-all + shell: bash + + - name: Publish artifacts to PyPI Test + if: inputs.deploy-to == 'PypiTest' + uses: pypa/gh-action-pypi-publish@release/v1 + with: + repository-url: https://test.pypi.org/legacy/ + + - name: Publish artifacts to PyPI Prod + if: inputs.deploy-to == 'PypiProd' + uses: pypa/gh-action-pypi-publish@release/v1