Skip to content

Commit 2ecf2bf

Browse files
authored
Fix Brew missing in PATH (#1367)
* Fix Brew not beging in PATH Seems like the default GitHub Actions Ubuntu image had an update and brew is no longer added to PATH by default. * Properly add to path * Next try
1 parent 6b068dc commit 2ecf2bf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
steps:
4848
- name: Lua Install
4949
run: sudo apt-get install lua5.3 luajit
50+
- name: Add Brew to Path (Required since Nov 2022)
51+
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH
5052
- name: Glow Install
5153
run: brew install glow
5254
# Checkout master & commit

0 commit comments

Comments
 (0)