aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-03-14 19:37:00 -0400
committerGitHub <noreply@github.com>2021-03-14 19:37:00 -0400
commita8694ff9c1c4d2cd1366321bdfce9078557eff1d (patch)
tree16ed02612f44e93d0ab7ba3ff3af94630b277a78
parentbdf3aeeeded962620f4a71cda8047e0844cfb666 (diff)
parentdfa01b820fe9c9a4d4b6e643e4d259469cd582e2 (diff)
downloadrneovim-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.yml4
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')