Skip to content

Commit 4e4db42

Browse files
authored
Big update (#38)
1 parent 3633b91 commit 4e4db42

File tree

4,035 files changed

+149262
-7303
lines changed

Some content is hidden

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

4,035 files changed

+149262
-7303
lines changed

.github/workflows/deploy.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build and Deploy
2+
on: [push]
3+
jobs:
4+
build-and-deploy:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v2
9+
with:
10+
persist-credentials: false
11+
12+
- name: Build and Deploy
13+
uses: JamesIves/github-pages-deploy-action@releases/v3
14+
with:
15+
ACCESS_TOKEN: ${{ secrets.FRANKLIN }}
16+
BRANCH: gh-pages
17+
FOLDER: __site

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
*DS_Store
2-
generated/
3-
sandbox.md
1+
.DS_Store

.gitlab-ci.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
pages:
2+
stage: deploy
3+
script:
4+
- mv __site public
5+
artifacts:
6+
paths:
7+
- public
8+
only:
9+
- master

A-model-tuning-hm.png

21.9 KB
Loading

0 commit comments

Comments
 (0)