Skip to content

Commit 3370ea5

Browse files
committed
debug 5 + potential fix
1 parent 4abedd7 commit 3370ea5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
strategy:
8-
max-parallel: 4
9-
matrix:
10-
python-version: ['3.8', '3.9', '3.10']
11-
os: [ubuntu-latest, macos-latest, windows-latest]
7+
# strategy:
8+
# max-parallel: 4
9+
# matrix:
10+
# python-version: ['3.8', '3.9', '3.10']
11+
# os: [ubuntu-latest, macos-latest, windows-latest]
1212

1313
# runs-on: ${{ matrix.os }}
1414
runs-on: windows-latest
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
python setup.py sdist bdist_wheel
3737
ls -l ${{ github.workspace }}
38-
38+
ls -l ${{ github.workspace }}/dist/*.*
3939
4040
upload:
4141
needs: build
@@ -45,7 +45,7 @@ jobs:
4545
- uses: actions/upload-artifact@v2
4646
with:
4747
name: diffpy2 - Python ${{ matrix.python-version }}
48-
path: ${{ github.workspace }}/../dist/*
48+
path: ${{ github.workspace }}/dist/*.*
4949

5050
# - name: Upload zipped offline app installer to GitHub releases
5151
# uses: ncipollo/release-action@v1

0 commit comments

Comments
 (0)