We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf63b9 commit 4abedd7Copy full SHA for 4abedd7
1 file changed
.github/workflows/build.yaml
@@ -20,7 +20,8 @@ jobs:
20
uses: s-weigand/setup-conda@v1
21
with:
22
update-conda: true
23
- python-version: ${{ matrix.python-version }}
+ # python-version: ${{ matrix.python-version }}
24
+ python-version: '3.8'
25
26
- name: Install dependencies
27
run: |
@@ -33,6 +34,8 @@ jobs:
33
34
- name: Build package
35
36
python setup.py sdist bdist_wheel
37
+ ls -l ${{ github.workspace }}
38
+
39
40
upload:
41
needs: build
@@ -42,7 +45,7 @@ jobs:
42
45
- uses: actions/upload-artifact@v2
43
46
44
47
name: diffpy2 - Python ${{ matrix.python-version }}
- path: ${{ github.workspace }}/dist/*
48
+ path: ${{ github.workspace }}/../dist/*
49
50
# - name: Upload zipped offline app installer to GitHub releases
51
# uses: ncipollo/release-action@v1
0 commit comments