We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e029162 commit 5f35832Copy full SHA for 5f35832
.github/workflows/deploy.yml
@@ -0,0 +1,29 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
7
+jobs:
8
+ deploy:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ deployments: write
13
14
+ steps:
15
+ - uses: actions/checkout@v6
16
17
+ - uses: oven-sh/setup-bun@v2
18
19
+ - run: bun install
20
21
+ - name: Build
22
+ run: bun run build
23
24
+ - name: Deploy to Cloudflare Pages
25
+ uses: cloudflare/wrangler-action@v3
26
+ with:
27
+ apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
28
+ accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
29
+ command: pages deploy dist --project-name=ooxml-dev
.gitignore
@@ -1,4 +1,6 @@
node_modules/
dist/
.DS_Store
-dev/
+dev/
+.wrangler/
+.env
0 commit comments