From 562f2d48fe3f6c4963d9bb93d49b5bb86d410e06 Mon Sep 17 00:00:00 2001 From: Holger Stolzenberg Date: Fri, 8 Nov 2024 17:17:17 +0100 Subject: [PATCH] Remove snapshot param from Python build --- .github/actions/python-client/action.yml | 4 ---- .github/workflows/main-build.yml | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/actions/python-client/action.yml b/.github/actions/python-client/action.yml index e330dac..9077fd0 100644 --- a/.github/actions/python-client/action.yml +++ b/.github/actions/python-client/action.yml @@ -14,10 +14,6 @@ inputs: release-version: required: true description: 'Python artifact version to use' - snapshot: - required: true - default: 'true' - description: 'Whether to create a Maven snapshot artifact' openapi-spec: required: true description: 'OpenAPI spec url to use for generation' diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 2bd5033..19b8a13 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -128,6 +128,7 @@ jobs: - name: Create target Python artifact version shell: bash + # TODO what is the proper snapshot version here -> 'dev'? run: echo "PYTHON_ARTIFACT_VERSION=${{ needs.prepare.outputs.next-artifact-version }}-${{ matrix.python-version }}-${{ needs.prepare.outputs.spicedb-version }}" >> ${GITHUB_ENV} - name: "Run python client build / SpiceDB: ${{ env.SPICEDB_VERSION }} / Python: ${{ matrix.python-version}} / HTTP lib: ${{ matrix.python-http-lib }}"