diff options
author | James McCoy <jamessan@jamessan.com> | 2021-03-14 19:37:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-14 19:37:00 -0400 |
commit | a8694ff9c1c4d2cd1366321bdfce9078557eff1d (patch) | |
tree | 16ed02612f44e93d0ab7ba3ff3af94630b277a78 | |
parent | bdf3aeeeded962620f4a71cda8047e0844cfb666 (diff) | |
parent | dfa01b820fe9c9a4d4b6e643e4d259469cd582e2 (diff) | |
download | rneovim-a8694ff9c1c4d2cd1366321bdfce9078557eff1d.tar.gz rneovim-a8694ff9c1c4d2cd1366321bdfce9078557eff1d.tar.bz2 rneovim-a8694ff9c1c4d2cd1366321bdfce9078557eff1d.zip |
Merge pull request #14139 from jamessan/release-packages
ci(GHA/release): Stop installing gcc-multilib
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 753142e555..2d0d21a585 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y autoconf automake build-essential cmake gcc-multilib gettext gperf libtool-bin locales ninja-build pkg-config unzip + sudo apt-get install -y autoconf automake build-essential cmake gettext gperf libtool-bin locales ninja-build pkg-config unzip - name: Build release id: build run: | @@ -51,7 +51,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y autoconf automake build-essential cmake gcc-multilib gettext gperf libtool-bin locales ninja-build pkg-config unzip + sudo apt-get install -y autoconf automake build-essential cmake gettext gperf libtool-bin locales ninja-build pkg-config unzip - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly') run: make appimage-latest - if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly') |