Skip to content

Commit 0a5acdc

Browse files
committed
Store dev artifacts directly without compressing them so they can
directly be downloaded, installed and re-used.
1 parent 06e6ee1 commit 0a5acdc

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/publish_dev_artifact.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,20 @@ jobs:
5151
ls -la dist | grep .tar.gz
5252
ls -la dist | grep .whl
5353
54-
- name: Store dev artifacts
54+
- name: Store dev artifacts - .tar.gz
5555
uses: actions/upload-artifact@v4
5656
with:
57-
name: libcloud-dev-artifacts
57+
name: libcloud-dev-tarball
5858
retention-days: 60
59+
compression-level: 0
5960
path: |
6061
dist/*.tar.gz
62+
63+
- name: Store dev artifacts - .whl
64+
uses: actions/upload-artifact@v4
65+
with:
66+
name: libcloud-dev-wheel
67+
retention-days: 60
68+
compression-level: 0
69+
path: |
6170
dist/*.whl

0 commit comments

Comments
 (0)