Skip to content

Commit 22eed2f

Browse files
committed
Add CI=false env to install and build to not throw on warnings
1 parent d050c27 commit 22eed2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,16 @@ jobs:
2424
node-version: "16"
2525
- name: Install dependencies
2626
run: npm install
27+
env:
28+
CI: false
2729
- name: Build
2830
run: npm run build
31+
env:
32+
CI: false
2933
- name: "upload-files"
3034
uses: "google-github-actions/upload-cloud-storage@v2"
3135
with:
3236
path: "build"
3337
destination: "sourcify-docs-bucket"
3438
parent: false
35-
glob: "**/*"
39+
glob: "**/*"

0 commit comments

Comments
 (0)