summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2023-07-06 22:24:15 +0200
committerSébastien Helleu <flashcode@flashtux.org>2023-07-06 22:24:15 +0200
commit8f9d88edd0106c92daf1ce624638f037f7e8fe0d (patch)
treed865f21cbfffd6a4979d1663ce9ecb0a4517470f
parentf1e372b5e27bd6f63608d37150550a0b98c63f07 (diff)
downloadweechat-8f9d88edd0106c92daf1ce624638f037f7e8fe0d.zip
ci: add workaround for broken `brew update`
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 2ddfa42c7..78dfbf956 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -92,7 +92,9 @@ jobs:
steps:
- - uses: actions/checkout@v2
+ - name: Setup Homebrew
+ id: setup-homebrew
+ uses: Homebrew/actions/setup-homebrew@master
- name: Install dependencies
run: |
@@ -112,6 +114,8 @@ jobs:
;
brew install asciidoctor guile lua pkg-config ruby
+ - uses: actions/checkout@v2
+
- name: Build
env:
CC: ${{ matrix.config.cc }}