Fix upload package name

This commit is contained in:
BBaoVanC 2020-12-27 23:10:14 -06:00
parent 63078ae36a
commit e9f6e6185e
No known key found for this signature in database
GPG key ID: 18089E4E3CCF1D3A
2 changed files with 6 additions and 6 deletions

View file

@ -52,8 +52,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./nekofetch_${{ steps.version.outputs.VERSION }}_iphoneos-arm.deb
asset_name: nekofetch_${{ steps.version.outputs.VERSION }}_iphoneos-arm.deb
asset_path: ./com.propr.nekofetch_${{ steps.version.outputs.VERSION }}_iphoneos-arm.deb
asset_name: com.propr.nekofetch_${{ steps.version.outputs.VERSION }}_iphoneos-arm.deb
asset_content_type: application/vnd.debian.binary-package
- name: Upload amd64 asset
id: upload-amd64-asset
@ -62,6 +62,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./nekofetch_${{ steps.version.outputs.VERSION }}_amd64.deb
asset_name: nekofetch_${{ steps.version.outputs.VERSION }}_amd64.deb
asset_path: ./com.propr.nekofetch_${{ steps.version.outputs.VERSION }}_amd64.deb
asset_name: com.propr.nekofetch_${{ steps.version.outputs.VERSION }}_amd64.deb
asset_content_type: application/vnd.debian.binary-package

View file

@ -44,9 +44,9 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: iphoneos-arm-deb
path: nekofetch*iphoneos-arm.deb
path: com.propr.nekofetch*iphoneos-arm.deb
- name: Upload amd64 deb as artifact
uses: actions/upload-artifact@v2
with:
name: amd64-deb
path: nekofetch*amd64.deb
path: com.propr.nekofetch*amd64.deb