Skip to content

Commit 2b5786d

Browse files
committed
Bump version to v1.9.95
1 parent c50cd68 commit 2b5786d

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ jobs:
116116
git add .
117117
git commit -m "Release: ${{ github.ref_name }}"
118118
git push
119+
cat .github/workflows/release.yml
119120
env:
120121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
121122
- name: Git Stash
@@ -142,16 +143,18 @@ jobs:
142143
run: |
143144
sudo apt-get update
144145
sudo apt-get install tree
146+
sudo pip install twine
145147
tree ${{github.workspace}}/sdk/python
146148
sudo chown -R $USER:$USER ${{github.workspace}}/sdk/python
147149
sudo chown -R $USER:$USER ${{github.workspace}}/sdk/python/dist
150+
twine check ${{github.workspace}}/sdk/python/dist/*
148151
- if: ${{ matrix.language == 'python' && env.PUBLISH_PYPI == 'true' }}
149152
name: Publish package to PyPI
150153
uses: pypa/gh-action-pypi-publish@release/v1
151154
with:
152155
user: __token__
153156
password: ${{ secrets.PYPI_TOKEN_TEST }}
154-
packages-dir: /home/runner/work/pulumi-runpod-native/pulumi-runpod-native/sdk/bin/dist
157+
packages-dir: /home/runner/work/pulumi-runpod-native/pulumi-runpod-native/sdk/python/dist
155158
verbose: true
156159
- if: ${{ matrix.language == 'nodejs' && env.PUBLISH_NPM == 'true' }}
157160
name: Publish package to NPM
@@ -168,8 +171,6 @@ jobs:
168171
strategy:
169172
fail-fast: true
170173
matrix:
171-
# dotnetversion:
172-
# - 3.1.301
173174
goversion:
174175
- 1.22.x
175176
language:
-17 KB
Binary file not shown.
17 KB
Binary file not shown.

sdk/python/runpodinfra.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: runpodinfra
3-
Version: 1.9.94
3+
Version: 1.9.95
44
Summary: The Runpod Pulumi provider provides resources to interact with Runpod's native APIs.
55
Home-page: https://runpod.io
66
License: Apache-2.0

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from subprocess import check_call
99

1010

11-
VERSION = "v1.9.94"
11+
VERSION = "v1.9.95"
1212
def readme():
1313
try:
1414
with open('README.md', encoding='utf-8') as f:

0 commit comments

Comments
 (0)