File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches :
7
+ - main
8
+
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
13
+ jobs :
14
+ ci :
15
+ runs-on : ubuntu-latest
16
+ timeout-minutes : 5
17
+ permissions :
18
+ contents : read
19
+ deployments : write
20
+ steps :
21
+ - name : Checkout repository
22
+ uses : actions/checkout@v4
23
+ - name : Publish to Cloudflare Pages
24
+ uses : cloudflare/pages-action@v1
25
+ with :
26
+ apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
27
+ accountId : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
28
+ projectName : rotate-remake
29
+ directory : src
30
+ gitHubToken : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
.DS_Store
2
+ .env.local
2
3
/node_modules
You can’t perform that action at this time.
0 commit comments