diff options
Diffstat (limited to '.github/workflows/build-linux.yml')
-rw-r--r-- | .github/workflows/build-linux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 87dc0b45..01a589d3 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -96,23 +96,23 @@ jobs: tar -xjf /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }}.tar.bz2 -C /tmp/wxWidgets-${{ env.WXWIDGETS_VERSION }} --strip-components=1 - name: Build VeraCrypt .deb packages run: | chmod +x src/Build/build_cmake_deb.sh src/Build/build_cmake_deb.sh WXSTATIC INDICATOR - name: Upload GUI .deb packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: veracrypt-gui-debs path: /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.* - name: Upload Console .deb packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: veracrypt-console-debs path: /tmp/VeraCrypt_Packaging/Console/Packaging/veracrypt-console-*.* - name: Install and test VeraCrypt GUI .deb packages run: | sudo apt install -y /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.deb veracrypt --text --test && veracrypt --text --version |