diff --git a/.github/workflows/build-deb.yml b/.github/workflows/build-deb.yml index 6777edb..3e34d8d 100644 --- a/.github/workflows/build-deb.yml +++ b/.github/workflows/build-deb.yml @@ -65,8 +65,8 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: linupdate-test-build_${{ env.VERSION }}.deb - path: /tmp/linupdate-test-build_${{ env.VERSION }}.deb + name: linupdate-test-build_${{ env.VERSION }}_all.deb + path: /tmp/linupdate-test-build_${{ env.VERSION }}_all.deb retention-days: 1 # Try to install package on Debian 10 @@ -89,12 +89,12 @@ jobs: - name: Download artifact uses: actions/download-artifact@v3 with: - name: linupdate-test-build_${{ env.VERSION }}.deb + name: linupdate-test-build_${{ env.VERSION }}_all.deb - name: Install package run: | apt-get update -y - apt-get install -y ./linupdate-test-build_${{ env.VERSION }}.deb + apt-get install -y ./linupdate-test-build_${{ env.VERSION }}_all.deb # Try to install package on Debian 11 install-debian-11: @@ -116,12 +116,12 @@ jobs: - name: Download artifact uses: actions/download-artifact@v3 with: - name: linupdate-test-build_${{ env.VERSION }}.deb + name: linupdate-test-build_${{ env.VERSION }}_all.deb - name: Install package run: | apt-get update -y - apt-get install -y ./linupdate-test-build_${{ env.VERSION }}.deb + apt-get install -y ./linupdate-test-build_${{ env.VERSION }}_all.deb # Try to install package on Ubuntu (latest) install-ubuntu: @@ -140,9 +140,9 @@ jobs: - name: Download artifact uses: actions/download-artifact@v3 with: - name: linupdate-test-build_${{ env.VERSION }}.deb + name: linupdate-test-build_${{ env.VERSION }}_all.deb - name: Install package run: | sudo apt-get update -y - sudo apt-get install -y ./linupdate-test-build_${{ env.VERSION }}.deb \ No newline at end of file + sudo apt-get install -y ./linupdate-test-build_${{ env.VERSION }}_all.deb \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 676a39a..9241205 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,8 +62,8 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: linupdate_${{ env.VERSION }}.deb - path: /tmp/linupdate_${{ env.VERSION }}.deb + name: linupdate_${{ env.VERSION }}_all.deb + path: /tmp/linupdate_${{ env.VERSION }}_all.deb retention-days: 3 build-rpm: @@ -143,7 +143,7 @@ jobs: - name: Download deb artifact uses: actions/download-artifact@v3 with: - name: linupdate_${{ env.VERSION }}.deb + name: linupdate_${{ env.VERSION }}_all.deb path: ~/assets # Download builded rpm package artifact