Skip to content

Commit 6a71d6e

Browse files
committedDec 2, 2024
Start the blog
0 parents  commit 6a71d6e

File tree

528 files changed

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

528 files changed

+168001
-0
lines changed
 

Diff for: ‎.github/workflows/deploy.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
pull_request:
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
if: github.ref != 'refs/heads/main'
10+
steps:
11+
- name: 'Checkout'
12+
uses: actions/checkout@main
13+
- name: 'Build only'
14+
uses: shalzz/zola-deploy-action@master
15+
env:
16+
BUILD_DIR: .
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
BUILD_ONLY: true
19+
build_and_deploy:
20+
runs-on: ubuntu-latest
21+
if: github.ref == 'refs/heads/main'
22+
steps:
23+
- name: 'Checkout'
24+
uses: actions/checkout@main
25+
- name: 'Build and deploy'
26+
uses: shalzz/zola-deploy-action@master
27+
env:
28+
PAGES_BRANCH: gh-pages
29+
BUILD_DIR: .
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Diff for: ‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public/

0 commit comments

Comments
 (0)