File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,9 @@ jobs:
154
154
curl -sfL https://install.goreleaser.com/github.com/goreleaser/nfpm.sh | sh -s -- -b ~/.local/bin v2.3.1
155
155
echo "$HOME/.local/bin" >> $GITHUB_PATH
156
156
157
+ - name : Install yarn
158
+ run : npm install -g yarn
159
+
157
160
- name : Download npm package
158
161
uses : actions/download-artifact@v2
159
162
with :
@@ -162,10 +165,10 @@ jobs:
162
165
- name : Decompress npm package
163
166
run : tar -xzf package.tar.gz
164
167
168
+ # NOTE: && here is deliberate - GitHub puts each line in its own `.sh`
169
+ # file when running inside a docker container.
165
170
- name : Build standalone release
166
- run : |
167
- source scl_source enable devtoolset-9
168
- yarn release:standalone
171
+ run : source scl_source enable devtoolset-9 && yarn release:standalone
169
172
170
173
- name : Sanity test standalone release
171
174
run : yarn test:standalone-release
You can’t perform that action at this time.
0 commit comments