mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
update upload-artifact action
This commit is contained in:
parent
648607d080
commit
c17c4cd7bf
1 changed files with 7 additions and 7 deletions
14
.github/workflows/nodejs.yml
vendored
14
.github/workflows/nodejs.yml
vendored
|
|
@ -36,7 +36,7 @@ jobs:
|
|||
echo "::set-output name=dmgName::$(ls dist/*.dmg | cut -d'/' -f2)"
|
||||
echo "::set-output name=dmgPath::$(ls dist/*.dmg)"
|
||||
- name: Archive macOS Build Artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getmacosfilename.outputs.dmgName }}
|
||||
path: ${{ steps.getmacosfilename.outputs.dmgPath }}
|
||||
|
|
@ -76,22 +76,22 @@ jobs:
|
|||
echo "::set-output name=rpmName::$(ls dist/*.rpm | cut -d'/' -f2)"
|
||||
echo "::set-output name=rpmPath::$(ls dist/*.rpm)"
|
||||
- name: Archive Linux Build Artifacts (Snap)
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getlinuxfilename.outputs.snapName }}
|
||||
path: ${{ steps.getlinuxfilename.outputs.snapPath }}
|
||||
- name: Archive Linux Build Artifacts (AppImage)
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getlinuxfilename.outputs.AppImageName }}
|
||||
path: ${{ steps.getlinuxfilename.outputs.AppImagePath }}
|
||||
- name: Archive Linux Build Artifacts (Deb)
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getlinuxfilename.outputs.debName }}
|
||||
path: ${{ steps.getlinuxfilename.outputs.debPath }}
|
||||
- name: Archive Linux Build Artifacts (RPM)
|
||||
uses: actions/upload-artifact@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getlinuxfilename.outputs.rpmName }}
|
||||
path: ${{ steps.getlinuxfilename.outputs.rpmPath }}
|
||||
|
|
@ -127,12 +127,12 @@ jobs:
|
|||
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)"
|
||||
- name: Archive Windows Build Artifacts (exe)
|
||||
uses: actions/upload-artifact@v1
|
||||
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@v1
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ steps.getwindowsfilename.outputs.nupkgName }}
|
||||
path: ${{ steps.getwindowsfilename.outputs.nupkgPath }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue