From 658158a4efbce26789c62d657a8ea7f10cbdb8be Mon Sep 17 00:00:00 2001 From: ckunki Date: Mon, 8 Jul 2024 11:00:26 +0200 Subject: [PATCH 1/2] Removed invalid matrix reference from GH workflow pypi_release.yaml --- .github/workflows/pypi_release.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pypi_release.yaml b/.github/workflows/pypi_release.yaml index 71ddbae..2e7e566 100644 --- a/.github/workflows/pypi_release.yaml +++ b/.github/workflows/pypi_release.yaml @@ -18,8 +18,6 @@ jobs: - name: Setup Python & Poetry Environment uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 - with: - python-version: ${{ matrix.python-version }} - name: Build Artifacts run: poetry build From 29149e7ced5ef8cde22b79caa57954f139f4a0f1 Mon Sep 17 00:00:00 2001 From: ckunki Date: Mon, 8 Jul 2024 11:56:30 +0200 Subject: [PATCH 2/2] Set python version and fixed typo in workflow file --- .github/workflows/pypi_release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi_release.yaml b/.github/workflows/pypi_release.yaml index 2e7e566..e921d1a 100644 --- a/.github/workflows/pypi_release.yaml +++ b/.github/workflows/pypi_release.yaml @@ -9,7 +9,7 @@ on: jobs: cd-job: - name: Continues Delivery + name: Continuous Delivery runs-on: ubuntu-latest steps: @@ -18,6 +18,8 @@ jobs: - name: Setup Python & Poetry Environment uses: exasol/python-toolbox/.github/actions/python-environment@0.13.0 + with: + python-version: "3.10" - name: Build Artifacts run: poetry build