Ver código fonte

Update python-package.yml

myhloli 1 ano atrás
pai
commit
6f5111cced
1 arquivos alterados com 9 adições e 1 exclusões
  1. 9 1
      .github/workflows/python-package.yml

+ 9 - 1
.github/workflows/python-package.yml

@@ -30,7 +30,15 @@ jobs:
       run: |
         python -m pip install --upgrade pip
         if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
-  
+    - name: Install wheel
+      run: |
+        python -m pip install wheel
     - name: Build wheel
       run: |
         python setup.py bdist_wheel
+    - name: Upload artifact
+      uses: actions/upload-artifact@v2
+      with:
+        name: wheel-file
+        path: dist/*.whl
+