File tree Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Expand file tree Collapse file tree 1 file changed +22
-2
lines changed Original file line number Diff line number Diff line change 63
63
with :
64
64
came : dist
65
65
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
66
74
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/*"
You can’t perform that action at this time.
0 commit comments