mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
Fix CI artifact upload
This commit is contained in:
parent
e6e39fbe98
commit
f81158cad9
1 changed files with 2 additions and 9 deletions
11
.github/workflows/nodejs.yml
vendored
11
.github/workflows/nodejs.yml
vendored
|
|
@ -152,17 +152,10 @@ jobs:
|
|||
- name: Get Windows Artifact Names
|
||||
id: getwindowsfilename
|
||||
run: |
|
||||
Write-Host "::set-output name=exeName::$(Get-ChildItem -Name .\dist\squirrel-windows\ | Select-String exe)"
|
||||
Write-Host "::set-output name=exePath::dist/squirrel-windows/$(Get-ChildItem -Name .\dist\squirrel-windows\ | Select-String exe)"
|
||||
Write-Host "::set-output name=nupkgName::$(Get-ChildItem -Name .\dist\squirrel-windows\ | Select-String nupkg)"
|
||||
Write-Host "::set-output name=nupkgPath::dist/squirrel-windows/$(Get-ChildItem -Name .\dist\squirrel-windows\ | Select-String nupkg)"
|
||||
Write-Host "::set-output name=exeName::$(Get-ChildItem -Name .\dist\ | Select-String exe$)"
|
||||
Write-Host "::set-output name=exePath::dist/$(Get-ChildItem -Name .\dist\ | Select-String exe$)"
|
||||
- name: Archive Windows Build Artifacts (exe)
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getwindowsfilename.outputs.exeName }}
|
||||
path: ${{ steps.getwindowsfilename.outputs.exePath }}
|
||||
- name: Archive Windows Build Artifacts (nupkg)
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getwindowsfilename.outputs.nupkgName }}
|
||||
path: ${{ steps.getwindowsfilename.outputs.nupkgPath }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue