diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-04 14:07:58 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-04 14:07:58 +0200 |
commit | 8a50e2a2c95cac8e9bef84b2ef6d8f295f0105f1 (patch) | |
tree | 92d0886abfe4485dd047493dd070817cd1128f04 | |
parent | Merge pull request #320 from AlTech98/master (diff) | |
download | server-8a50e2a2c95cac8e9bef84b2ef6d8f295f0105f1.tar.xz |
:bug: fix release
-rw-r--r-- | .github/workflows/release.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e0bb5e33..da101642 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,20 +31,21 @@ jobs: with: node-version: 14 - run: | + npm config set ignore-scripts true cd util npm i npm run build npm pack cd ../api - npm i ../util/fosscord-util-1.0.0.tgz + npm i ../util/ npm run build npm pack cd ../cdn - npm i ../util/fosscord-util-1.0.0.tgz + npm i ../util/ npm run build npm pack cd ../gateway - npm i ../util/fosscord-util-1.0.0.tgz + npm i ../util/ npm run build npm pack cd ../bundle |