Browse Source

ci: fix build workflow

NGPixel 2 năm trước cách đây
mục cha
commit
d5017e4cc6
1 tập tin đã thay đổi với 4 bổ sung4 xóa
  1. 4 4
      .github/workflows/build.yml

+ 4 - 4
.github/workflows/build.yml

@@ -74,10 +74,10 @@ jobs:
     - name: Prepare build archive
       run: |
         mkdir -p _dist
-        cp assets _dist/assets
-        cp server _dist/server
-        cp LICENSE _dist/LICENSE
-        cp config.sample.yml _dist/config.sample.yml
+        cp ./assets _dist/assets
+        cp ./server _dist/server
+        cp ./LICENSE _dist/LICENSE
+        cp ./config.sample.yml _dist/config.sample.yml
         cd server
         npm ci --omit=dev --audit=false --fund=false
         cd ..