We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7f2708 commit 8067dadCopy full SHA for 8067dad
1 file changed
.github/workflows/test_pypi_yank.yml
@@ -0,0 +1,19 @@
1
+name: Test PyPI yank capability
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ test-yank:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Install twine
11
+ run: pip install twine
12
13
+ - name: Attempt to yank policyengine-uk 0.35.0
14
+ env:
15
+ TWINE_USERNAME: __token__
16
+ TWINE_PASSWORD: ${{ secrets.PYPI }}
17
+ run: |
18
+ pip install twine
19
+ twine yank policyengine-uk 0.35.0 --reason "Test: verifying org secret has yank permissions" || echo "YANK FAILED (exit $?)"
0 commit comments