File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -54,11 +54,18 @@ jobs:
54
54
- name : 🙏 build
55
55
run : dotnet build -m:1 -p:VersionLabel="$GITHUB_REF.$GITHUB_RUN_NUMBER"
56
56
57
+ - name : ⚙ GNU grep
58
+ if : matrix.os == 'macOS-latest'
59
+ run : |
60
+ brew install grep
61
+ echo 'export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"' >> .bash_profile
62
+
57
63
- name : 🧪 test
58
64
shell : bash --noprofile --norc {0}
59
65
env :
60
66
LC_ALL : en_US.utf8
61
67
run : |
68
+ [ -f .bash_profile ] && source .bash_profile
62
69
counter=0
63
70
exitcode=0
64
71
reset="\e[0m"
Original file line number Diff line number Diff line change @@ -24,11 +24,18 @@ jobs:
24
24
- name : 🙏 build
25
25
run : dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v}
26
26
27
+ - name : ⚙ GNU grep
28
+ if : matrix.os == 'macOS-latest'
29
+ run : |
30
+ brew install grep
31
+ echo 'export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH"' >> .bash_profile
32
+
27
33
- name : 🧪 test
28
34
shell : bash --noprofile --norc {0}
29
35
env :
30
36
LC_ALL : en_US.utf8
31
37
run : |
38
+ [ -f .bash_profile ] && source .bash_profile
32
39
counter=0
33
40
exitcode=0
34
41
reset="\e[0m"
You can’t perform that action at this time.
0 commit comments