Skip to content

Commit 6958fb8

Browse files
authored
Quick fix for upload artifact for win (#346)
* fix upload artifact for win * update changelog
1 parent 66429b0 commit 6958fb8

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
* Support `expval` for a Hamiltonian.
1313
[(#333)](https://github.com/PennyLaneAI/pennylane-lightning/pull/333)
1414

15+
* Implements caching for Kokkos installation.
16+
[(#316)](https://github.com/PennyLaneAI/pennylane-lightning/pull/316)
17+
1518
### Documentation
1619

1720
### Bug fixes

.github/workflows/wheel_win_x86_64.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ jobs:
206206
- uses: actions/upload-artifact@v2
207207
if: ${{ github.event_name == 'release' || github.ref == 'refs/heads/master' || steps.rc_build.outputs.match != ''}}
208208
with:
209-
name: ${{ runner.os }}-wheels.zip
210-
path: Z:\dist\*.whl
209+
name: ${{ runner.os }}-wheels-${{ matrix.arch }}.zip
210+
path: ./wheelhouse/*.whl
211211

212212
upload-pypi:
213213
needs: win-wheels
@@ -216,7 +216,7 @@ jobs:
216216
steps:
217217
- uses: actions/download-artifact@v2
218218
with:
219-
name: Windows-wheels.zip
219+
name: Windows-wheels-AMD64.zip
220220
path: dist
221221

222222
- name: Upload wheels to PyPI

pennylane_lightning/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
Version number (major.minor.patch[-label])
1717
"""
1818

19-
__version__ = "0.26.0-dev9"
19+
__version__ = "0.26.0-dev10"

0 commit comments

Comments
 (0)