Skip to content

Commit 72d8b50

Browse files
committed
fixup! chore: add dependency checks to release scripts
1 parent 4dd6f4d commit 72d8b50

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/release.yaml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,6 @@ jobs:
9999
with:
100100
go-version: "~1.18"
101101

102-
- name: Install gon
103-
run: |
104-
brew tap mitchellh/gon
105-
brew install mitchellh/gon/gon
106-
107102
- name: Import Signing Certificates
108103
uses: Apple-Actions/import-codesign-certs@v1
109104
with:
@@ -121,11 +116,21 @@ jobs:
121116
restore-keys: |
122117
js-${{ runner.os }}-
123118
124-
- name: Install make
119+
- name: Install dependencies
125120
run: |
121+
brew install bash
122+
126123
brew install make
127124
echo "$(brew --prefix)/opt/make/libexec/gnubin" >> $GITHUB_PATH
128125
126+
brew tap mitchellh/gon
127+
brew install mitchellh/gon/gon
128+
129+
- name: which bash
130+
run: |
131+
which bash
132+
echo "$0"
133+
129134
- name: Build Site
130135
run: make site/out/index.html
131136

0 commit comments

Comments
 (0)