File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 11Metadata-Version: 2.1
22Name: runpodinfra
3- Version: 1.9.94
3+ Version: 1.9.95
44Summary: The Runpod Pulumi provider provides resources to interact with Runpod's native APIs.
55Home-page: https://runpod.io
66License: Apache-2.0
Original file line number Diff line number Diff line change 88from subprocess import check_call
99
1010
11- VERSION = "v1.9.94 "
11+ VERSION = "v1.9.95 "
1212def readme ():
1313 try :
1414 with open ('README.md' , encoding = 'utf-8' ) as f :
You can’t perform that action at this time.
0 commit comments