diff --git a/.github/workflows/extra-arm.yml b/.github/workflows/extra-arm.yml index 538965ab39..3d8a4d491d 100644 --- a/.github/workflows/extra-arm.yml +++ b/.github/workflows/extra-arm.yml @@ -103,7 +103,7 @@ jobs: - name: Update artifact in latest-release uses: ncipollo/release-action@v1.8.6 - if: github.event_name == 'push' && endsWith( github.ref , 'Cog' ) + if: github.event_name == 'schedule' || (github.event_name == 'push' && endsWith( github.ref , 'Cog' )) with: prerelease: true allowUpdates: true diff --git a/.github/workflows/extra.yml b/.github/workflows/extra.yml index bddaa3af1e..18f05c86ab 100644 --- a/.github/workflows/extra.yml +++ b/.github/workflows/extra.yml @@ -94,7 +94,7 @@ jobs: - name: Update artifact in latest-build uses: ncipollo/release-action@v1.8.6 - if: github.event.inputs.should-deploy == 'true' && endsWith( github.ref , 'Cog' ) + if: github.event_name == 'schedule' || (github.event.inputs.should-deploy == 'true' && endsWith( github.ref , 'Cog' )) with: prerelease: true allowUpdates: true diff --git a/scripts/ci/actions_prepare_linux_x86.sh b/scripts/ci/actions_prepare_linux_x86.sh index a7b16f5a1e..f19885e44f 100755 --- a/scripts/ci/actions_prepare_linux_x86.sh +++ b/scripts/ci/actions_prepare_linux_x86.sh @@ -45,8 +45,6 @@ elif [[ "${ARCH}" = "linux32x86" ]]; then libx11-dev:i386 \ libsm-dev:i386 \ libice-dev:i386 \ - libgl1-mesa-glx:i386 \ - libgl1-mesa-dev:i386 \ libxext-dev:i386 \ libxrender-dev:i386 \ libglapi-mesa:i386 \