Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
[CI] Trying to download artifacts from build flow
Browse files Browse the repository at this point in the history
Let's see if that even works
  • Loading branch information
igiloh-pinecone committed Nov 1, 2023
1 parent 1998e0f commit 0c0335e
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/release.yml
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/

0 comments on commit 0c0335e

Please sign in to comment.