Skip to content

Commit 95a518d

Browse files
author
Grzegorz Kocjan
committed
Move page to subfolder
1 parent 5a74e74 commit 95a518d

File tree

1,325 files changed

+88681
-7
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,325 files changed

+88681
-7
lines changed

.github/workflows/hugo.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ jobs:
2424

2525
- name: Build
2626
run: hugo --minify
27+
working-directory: ./page
2728

2829
- name: Deploy
2930
uses: peaceiris/actions-gh-pages@v3
3031
if: ${{ github.ref == 'refs/heads/main' }}
3132
with:
3233
github_token: ${{ secrets.GITHUB_TOKEN }}
3334
publish_branch: gh-pages
34-
publish_dir: ./public
35+
publish_dir: ./page/public

.gitignore

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,39 @@
11
# Generated files by hugo
2-
/public/
3-
/resources/_gen/
4-
/assets/jsconfig.json
5-
hugo_stats.json
2+
/page/public/
3+
/page/resources/_gen/
4+
/page/assets/jsconfig.json
5+
/pagehugo_stats.json
66

77
# Executable may be added to repository
88
hugo.exe
99
hugo.darwin
1010
hugo.linux
1111

1212
# Temporary lock file while building
13-
/.hugo_build.lock
13+
/page/.hugo_build.lock
1414

1515
# Secret for google api
1616
.client_secret.json
1717
.client_secret.token.json
18+
19+
# Python cache files
20+
__pycache__/
21+
*.py[cod]
22+
*.pyo
23+
*.pyd
24+
.Python
25+
*.so
26+
.pytest_cache/
27+
.ruff_cache/
28+
.coverage
29+
htmlcov/
30+
31+
32+
# Virtual environments
33+
.venv/
34+
venv/
35+
env/
36+
37+
# OS files
38+
.DS_Store
39+
Thumbs.db
File renamed without changes.

0 commit comments

Comments
 (0)