Skip to content

Commit e6e26fc

Browse files
committed
Move site into site directory
1 parent 9ab6cde commit e6e26fc

33 files changed

+9
-76
lines changed

.github/workflows/jekyll.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ concurrency:
2222
jobs:
2323
# Build job
2424
build:
25+
defaults:
26+
run:
27+
working-directory: ./site
2528
runs-on: ubuntu-latest
2629
steps:
2730
- name: Checkout
@@ -32,6 +35,7 @@ jobs:
3235
ruby-version: '3.3.5'
3336
bundler-cache: true
3437
cache-version: 0
38+
working-directory: ./site
3539
- name: Build
3640
run: bundle exec jekyll build
3741
env:
@@ -40,7 +44,7 @@ jobs:
4044
uses: actions/upload-artifact@v4
4145
with:
4246
name: site
43-
path: _site
47+
path: site/_site
4448
overwrite: true
4549

4650
# Push job

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,17 @@ Follow steps:
1414
### Bundle installation
1515

1616
```shell
17+
cd site
1718
bundle config set --local path 'vendor/bundle'
1819
bundle install
1920
```
2021

2122
### Build and serve the site
2223

2324
```shell
25+
# change directory to site
26+
cd site
27+
2428
# just build the website
2529
bundle exec jekyll build
2630

rfc/draft-jsonlines-standard_mime_type.md

Lines changed: 0 additions & 73 deletions
This file was deleted.
File renamed without changes.

CNAME renamed to site/CNAME

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

_data/menu.yml renamed to site/_data/menu.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,5 @@ items:
77
url: '/validator/'
88
- label: 'On the web'
99
url: '/on_the_web/'
10-
- label: 'Internet Draft'
11-
url: '/rfc/draft-jsonlines-standard_mime_type.html'
1210
- label: 'json.org'
1311
url: 'https://json.org'
File renamed without changes.

0 commit comments

Comments
 (0)