Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fe1b95b

Browse files
committedMay 4, 2025·
githubactions-pushed
0 parents  commit fe1b95b

File tree

1,306 files changed

+15737
-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.

1,306 files changed

+15737
-0
lines changed
 

‎.github/workflows/static.yml‎

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: auto Deploy static content to Pages
2+
on:
3+
push:
4+
branches: ["master"]
5+
workflow_dispatch:
6+
permissions:
7+
contents: read
8+
pages: write
9+
id-token: write
10+
concurrency:
11+
group: "pages"
12+
cancel-in-progress: false
13+
jobs:
14+
deploy:
15+
environment:
16+
name: github-pages
17+
url: ${{ steps.deployment.outputs.page_url }}
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
- name: Setup Pages
23+
uses: actions/configure-pages@v5
24+
- name: Upload artifact
25+
uses: actions/upload-pages-artifact@v3
26+
with:
27+
path: "./_build"
28+
- name: Deploy to GitHub Pages
29+
id: deployment
30+
uses: actions/deploy-pages@v4

‎.gitignore‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/.DS_Store

‎_build/1kdd/1kddnews/cleanuipve/index.html‎

Lines changed: 21 additions & 0 deletions
Large diffs are not rendered by default.

‎_build/1kdd/1kddnews/compactlxcwiz/index.html‎

Lines changed: 24 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.