Skip to content

Commit

Permalink
Quick fix for upload artifact for win (#346)
Browse files Browse the repository at this point in the history
* fix upload artifact for win

* update changelog
  • Loading branch information
AmintorDusko authored Aug 29, 2022
1 parent 66429b0 commit 6958fb8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
* Support `expval` for a Hamiltonian.
[(#333)](https://github.com/PennyLaneAI/pennylane-lightning/pull/333)

* Implements caching for Kokkos installation.
[(#316)](https://github.com/PennyLaneAI/pennylane-lightning/pull/316)

### Documentation

### Bug fixes
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheel_win_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ jobs:
- uses: actions/upload-artifact@v2
if: ${{ github.event_name == 'release' || github.ref == 'refs/heads/master' || steps.rc_build.outputs.match != ''}}
with:
name: ${{ runner.os }}-wheels.zip
path: Z:\dist\*.whl
name: ${{ runner.os }}-wheels-${{ matrix.arch }}.zip
path: ./wheelhouse/*.whl

upload-pypi:
needs: win-wheels
Expand All @@ -216,7 +216,7 @@ jobs:
steps:
- uses: actions/download-artifact@v2
with:
name: Windows-wheels.zip
name: Windows-wheels-AMD64.zip
path: dist

- name: Upload wheels to PyPI
Expand Down
2 changes: 1 addition & 1 deletion pennylane_lightning/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.26.0-dev9"
__version__ = "0.26.0-dev10"

0 comments on commit 6958fb8

Please sign in to comment.