Skip to content

Commit

Permalink
Merge pull request #581 from marceltaeumel/Cog
Browse files Browse the repository at this point in the history
Fixes Linux 32-bit build preparation and deployment of monthly builds
  • Loading branch information
marceltaeumel committed Aug 4, 2021
2 parents 47a0e0c + 7e61fe4 commit 3cfc5d1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/extra-arm.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/extra.yml
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions scripts/ci/actions_prepare_linux_x86.sh
Expand Up @@ -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 \
Expand Down

0 comments on commit 3cfc5d1

Please sign in to comment.