Skip to content

Commit 4fc8c04

Browse files
committed
Quiet!
1 parent 4636330 commit 4fc8c04

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/build-ceramic.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ jobs:
144144
- name: Extract node binaries and modules
145145
run: |
146146
mkdir -p tmp-ceramic
147-
curl -L https://github.com/ceramic-engine/ceramic/releases/download/v1.5.0/ceramic-mac.zip -o tmp-ceramic.zip
148-
unzip tmp-ceramic.zip -d tmp-ceramic
147+
curl -L -s https://github.com/ceramic-engine/ceramic/releases/download/v1.5.0/ceramic-mac.zip -o tmp-ceramic.zip
148+
unzip -q tmp-ceramic.zip -d tmp-ceramic
149149
rm -rf ./node
150150
rm -rf ./tools/node_modules
151151
cp -R ./tmp-ceramic/node ./
@@ -299,24 +299,25 @@ jobs:
299299
needs: [build-ceramic-windows, build-ceramic-mac, build-ceramic-linux]
300300
runs-on: ubuntu-22.04
301301
steps:
302+
- uses: actions/checkout@v4
302303

303304
- name: Download ceramic-windows.zip
304305
uses: actions/download-artifact@v4
305306
with:
306307
name: ceramic-windows.zip
307-
path: ceramic-windows.zip
308+
path: .
308309

309310
- name: Download ceramic-mac.zip
310311
uses: actions/download-artifact@v4
311312
with:
312313
name: ceramic-mac.zip
313-
path: ceramic-mac.zip
314+
path: .
314315

315316
- name: Download ceramic-linux.zip
316317
uses: actions/download-artifact@v4
317318
with:
318319
name: ceramic-linux.zip
319-
path: ceramic-linux.zip
320+
path: .
320321

321322
- name: Extract tag name
322323
id: extract_tag
@@ -327,7 +328,7 @@ jobs:
327328
uses: softprops/action-gh-release@v2
328329
with:
329330
tag_name: ${{ github.ref }}
330-
name: ${{ env.TAG_NAME }}
331+
name: Ceramic ${{ env.TAG_NAME }}
331332
body: |
332333
Ceramic ${{ env.TAG_NAME }}
333334
draft: false

0 commit comments

Comments
 (0)