We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf2483c commit 7140254Copy full SHA for 7140254
.github/workflows/cloudflare.yml
@@ -47,9 +47,13 @@ jobs:
47
run: |
48
mkdir -p /tmp/worker-build
49
cp -r server/pkg/* /tmp/worker-build/
50
- rm -rf /tmp/worker-build/server/node_modules
51
cp server/wrangler.build.toml /tmp/worker-build/wrangler.toml
52
- cp .gitignore /tmp/worker-build/.gitignore
+ cp .gitignore /tmp/worker-build/
+
53
+ - name: Clean target and node_modules
54
+ run: |
55
+ rm -rf target/
56
+ rm -rf server/node_modules/
57
58
- name: Create and Switch to cf-worker Branch
59
0 commit comments