mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-10 02:24:36 -05:00
regex take 2
This commit is contained in:
committed by
Richard Kiss
parent
dbfc4434e3
commit
40e255cd33
@@ -24,7 +24,7 @@ jobs:
|
||||
curl -OL --show-error --fail https://download.chia.net/simple/miniupnpc/miniupnpc-2.1-cp37-cp37m-win_amd64.whl
|
||||
curl -OL --show-error --fail https://download.chia.net/simple/setproctitle/setproctitle-1.1.10-cp37-cp37m-win_amd64.whl
|
||||
|
||||
- name: Create and collect all wheels for chia-blockchain
|
||||
- name: Collect and Create wheels for chia-blockchain
|
||||
run: |
|
||||
pip install pep517 wheel
|
||||
pip wheel --use-pep517 --only-binary cbor2 --extra-index-url https://download.chia.net/simple/ -f ${{ github.workspace }} --wheel-dir=${{ github.workspace }}\electron-wix\blockchain ${{ github.workspace }}\.
|
||||
|
||||
@@ -22,7 +22,7 @@ Copy-Item ".\blockchain\*.whl" "$blockchainDir\wheels" -Force
|
||||
|
||||
# generate the script that will install all the wheels on the target machine
|
||||
$text = ""
|
||||
Get-ChildItem "$blockchainDir\wheels" -Filter chia_blockchain-*-py3-none-any.whl |
|
||||
Get-ChildItem "$blockchainDir\wheels" -Filter chia_blockchain*py3-none-any.whl |
|
||||
Foreach-Object {
|
||||
$name = $_.Name
|
||||
$text += "pip install --find-links .\wheels\ .\wheels\$name`n"
|
||||
|
||||
Reference in New Issue
Block a user