Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- fix-website
paths:
- 'index.md'
- 'page/**'
Expand All @@ -27,10 +28,17 @@ jobs:

- name: Prepare pages directory
run: |
mkdir -p _site
cp index.md _site/
cp page/privacy_policy.md _site/
cp page/terms_and_conditions.md _site/
mkdir -p page_build
cp page/_config.yml page_build/
cp page/index.md page_build/
cp page/privacy_policy.md page_build/
cp page/terms_and_conditions.md page_build/

- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./page_build
destination: ./_site

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
3 changes: 3 additions & 0 deletions page/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
title: Wormhole
description: An open source file transfer app using the magic-wormhole protocol
theme: jekyll-theme-cayman
File renamed without changes.
Loading