diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 05facde..8c1c51a 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -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 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 001a20e..9ab5f90 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -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