Skip to content

Commit 2b3f63e

Browse files
authored
Update nightly-compile.yaml
1 parent de60230 commit 2b3f63e

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

.github/workflows/nightly-compile.yaml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,26 @@ jobs:
6363
with:
6464
came: dist
6565
path: ./dist/*
66+
67+
upload_wheels_as_nightly_builds:
68+
name: Publish
69+
needs: [build_wheels, build_sdist]
70+
runs-on: ubuntu-latest
71+
72+
# I chose this repo's setup/workflow because it was the best Resource I could find for an implementation - Vizonex
73+
# See: https://github.com/hoffstadt/DearPyGui/blob/master/.github/workflows/Deployment.yml#L165
6674

67-
68-
# TODO (Vizonex): Make sure this job works and that we get our compiled wheels...
75+
steps:
76+
77+
- name: Checkout
78+
uses: actions/checkout@v3
79+
80+
- name: Download artifacts
81+
uses: actions/download-artifact@v3
82+
- name: Upload Nightly Builds
83+
uses: actions/upload-artifact@v3
84+
with:
85+
name: Winloop-Nightly-Wheels
86+
path: |
87+
"./wheelhouse/*.whl"
88+
"./dist/*"

0 commit comments

Comments
 (0)