소스 검색

Update python-package.yml

myhloli 1 년 전
부모
커밋
6f5111cced
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  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
+