mirror of
https://github.com/danbulant/nekofetch
synced 2026-06-19 22:31:13 +00:00
Fix upload package name
This commit is contained in:
parent
63078ae36a
commit
e9f6e6185e
2 changed files with 6 additions and 6 deletions
8
.github/workflows/deployment.yml
vendored
8
.github/workflows/deployment.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/integration.yml
vendored
4
.github/workflows/integration.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue