We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcda683 commit d450004Copy full SHA for d450004
.github/workflows/deploy.yml
@@ -27,17 +27,19 @@ jobs:
27
steps:
28
- name: Checkout
29
uses: actions/checkout@v4
30
+ - name: Cache Primes
31
+ id: cache-primes
32
+ uses: actions/cache@v4
33
+ with:
34
+ path: ${{ env.PROJECT_NAME }}
35
+ key: ${{ runner.os }}-${{ env.PROJECT_NAME }}
36
+
37
- name: Install Deps
38
run: npm install
39
40
- name: Build
41
run: npm run build --preset=cloudflare_pages
42
- - uses: actions/upload-artifact@v4
- with:
- name: ${{env.PROJECT_NAME}}-dist
- path: ./dist/
-
43
- name: Deploy
44
uses: cloudflare/wrangler-action@v3
45
# env:
0 commit comments