From 0c0335ef6b0655da47a3acea3405016eb2a55020 Mon Sep 17 00:00:00 2001 From: ilai Date: Wed, 1 Nov 2023 11:42:46 +0200 Subject: [PATCH] [CI] Trying to download artifacts from build flow Let's see if that even works --- .github/workflows/release.yml | 46 +++++++++++++++++++++++++++++++++++ 1 file changed, 46 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..6796d930 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,46 @@ +name: 'PyPI Release: Production (pinecone-client)' + +on: + workflow_dispatch: + inputs: + releaseLevel: + description: 'Release level' + required: true + type: choice + default: 'patch' + options: + - 'patch' # bug fixes + - 'minor' # new features, backwards compatible + - 'major' # breaking changes + generateBranch: + description: 'Whether to generate a release branch' + required: true + type: boolean + default: false + generateTag: + description: 'Whether to generate a release tag' + required: true + type: boolean + default: true + +env: + PYPI_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }} + PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }} + + +jobs: + build: + uses: ./github/workflows/pre-release-CI.yml + + publish: + requires: build + runs-on: ubuntu-latest + steps: + - name: download wheels + uses: actions/download-artifact@v2 + with: + path: wheels + + - name: debug print wheels + run: | + ls -lah wheels/ \ No newline at end of file