Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sdk_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: ./.github/workflows/speakeasy_sdk_publish.yaml
with:
target: censys-sdk-python
poetry_version: 1.8.2
python_version: "3.10"
secrets:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
pypi_token: ${{ secrets.PYPI_TOKEN }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/speakeasy_sdk_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ on:
required: false
type: string
default: "5.x"
python_version:
description: "The Python version to use for publishing"
required: false
type: string
default: "3.9"
poetry_version:
description: "The version of poetry to use"
required: false
Expand Down Expand Up @@ -146,7 +151,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: ${{ inputs.python_version }}
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
Expand Down
Loading