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 58c4ad0 commit 9211583Copy full SHA for 9211583
.github/workflows/release.yml
@@ -38,12 +38,21 @@ jobs:
38
working-directory: tools/isort-gaussdb
39
run: python -m build
40
41
+ - name: Show dist dirs content
42
+ run: |
43
+ ls -l gaussdb/dist/
44
+ ls -l gaussdb_pool/dist/
45
+ ls -l tools/isort-gaussdb/dist/
46
+
47
- name: Collect all artifacts
48
run: |
49
mkdir -p all_dist
50
cp gaussdb/dist/* all_dist/
51
cp gaussdb_pool/dist/* all_dist/
52
cp tools/isort-gaussdb/dist/* all_dist/
53
+ ls -ltr all_dist/
54
55
- name: Upload all dist/* to GitHub Release
56
uses: softprops/action-gh-release@v1
57
+ with:
58
+ files: all_dist/*
0 commit comments