Skip to content

Commit d9cae2f

Browse files
githubactions-pushed
0 parents  commit d9cae2f

File tree

1,300 files changed

+15746
-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,300 files changed

+15746
-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

.github/workflows/sync.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: auto sync to gitlab
2+
on:
3+
workflow_dispatch:
4+
push:
5+
jobs:
6+
run:
7+
name: sync
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
fetch-depth: 0
13+
- uses: yesolutions/mirror-action@master
14+
with:
15+
REMOTE: https://gitlab.com/minlearn/minlearnprogramming.git
16+
GIT_USERNAME: username
17+
GIT_PASSWORD: ${{ secrets.GITLAB_TOKEN }}
18+
PUSH_ALL_REFS: false

.gitignore

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

_build/ads.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
google.com, pub-9349570071783796, DIRECT, f08c47fec0942fa0

_build/app-082d818364efa619a7b6.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_build/app-8b73f1a80e29569338c6.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_build/assets/appinst.png

399 KB
Loading

_build/assets/beacon.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_build/assets/bundle.220ee61c.min.js

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)