File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -116,29 +116,23 @@ jobs:
116
116
restore-keys : |
117
117
js-${{ runner.os }}-
118
118
119
- - name : which bash
120
- run : |
121
- which bash
122
- echo "$0"
123
-
124
119
- name : Install dependencies
125
120
run : |
121
+ # The version of bash that MacOS ships with is too old
126
122
brew install bash
127
123
124
+ # The version of make that MacOS ships with is too old
128
125
brew install make
129
126
echo "$(brew --prefix)/opt/make/libexec/gnubin" >> $GITHUB_PATH
130
127
128
+ # BSD getopt is incompatible with the build scripts
131
129
brew install gnu-getopt
132
130
echo "$(brew --prefix)/opt/gnu-getopt/bin" >> $GITHUB_PATH
133
131
132
+ # Used for notarizing the binaries
134
133
brew tap mitchellh/gon
135
134
brew install mitchellh/gon/gon
136
135
137
- - name : which bash
138
- run : |
139
- which bash
140
- echo "$0"
141
-
142
136
- name : Build Site
143
137
run : make site/out/index.html
144
138
@@ -162,6 +156,7 @@ jobs:
162
156
env :
163
157
AC_USERNAME : ${{ secrets.AC_USERNAME }}
164
158
AC_PASSWORD : ${{ secrets.AC_PASSWORD }}
159
+ AC_APPLICATION_IDENTITY : BDB050EB749EDD6A80C6F119BF1382ECA119CCCC
165
160
166
161
- name : Upload Binary Artifacts
167
162
uses : actions/upload-artifact@v3
You can’t perform that action at this time.
0 commit comments