We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c33f82a commit fa7a02cCopy full SHA for fa7a02c
1 file changed
.github/workflows/release-python.yml
@@ -38,7 +38,7 @@ jobs:
38
id: version
39
run: |
40
VERSION=$(cat languages/python/pyproject.toml | grep -Eo 'version = "[0-9]+\.[0-9]+\.[0-9]+"' | grep -Eo '[0-9]+\.[0-9]+\.[0-9]+')
41
- echo "version=$VERSION" >> $GITHUB_ENV
+ echo "version=$VERSION" >> $GITHUB_OUTPUT
42
43
release:
44
name: Release
@@ -58,6 +58,12 @@ jobs:
58
name: bitwarden_sdk(.*)
59
name_is_regexp: true
60
61
+ - name: Move all whl files to single directory
62
+ run: |
63
+ shopt -s globstar
64
+ mv **/*.whl .
65
+ working-directory: ${{ github.workspace }}/target/wheels/dist
66
+
67
- name: Create GitHub release
68
if: ${{ inputs.release_type != 'Dry Run' }}
69
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5 # v1.14.0
0 commit comments