This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Trying to download artifacts from build flow
Let's see if that even works
- Loading branch information
1 parent
1998e0f
commit 0c0335e
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/ |