We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f28cb4c commit 86f0f05Copy full SHA for 86f0f05
1 file changed
.github/workflows/build-and-publish.yaml
@@ -42,9 +42,17 @@ jobs:
42
run: |
43
python -m unittest tests/*.py
44
45
+ approve-publish:
46
+ name: Approve publish
47
+ needs: unit-tests
48
+ runs-on: ubuntu-latest
49
+ environment: sdk-publish-approval
50
+ steps:
51
+ - run: echo "Publish approved"
52
+
53
build-and-pubish:
54
name: Build and publish Python packages to PyPi
- needs: unit-tests
55
+ needs: approve-publish
56
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-publish-to-pypi-versioned.yaml@v3
57
with:
58
release_type: ${{ inputs.release_type }}
0 commit comments