Skip to content

Commit 424fa84

Browse files
committed
.
Signed-off-by: dopaemon <[email protected]>
0 parents  commit 424fa84

File tree

507 files changed

+40
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

507 files changed

+40
-0
lines changed

.github/workflows/release.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Scheduled GitHub Pages Redeploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
schedule:
8+
- cron: '0 0 1 * *'
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout source
17+
uses: actions/checkout@v4
18+
19+
- name: Upload GitHub Pages artifact
20+
uses: actions/upload-pages-artifact@v3
21+
with:
22+
path: ./
23+
24+
deploy:
25+
runs-on: ubuntu-latest
26+
needs: build
27+
28+
permissions:
29+
contents: read
30+
pages: write
31+
id-token: write
32+
33+
environment:
34+
name: github-pages
35+
url: ${{ steps.deployment.outputs.page_url }}
36+
37+
steps:
38+
- name: Deploy to GitHub Pages
39+
id: deployment
40+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)