This commit is contained in:
parent
e2f220d4bb
commit
37e80e6c96
8 changed files with 14 additions and 10 deletions
|
@ -11,13 +11,15 @@ jobs:
|
||||||
ruby-version: '3.2.2' # Not needed with a .ruby-version file
|
ruby-version: '3.2.2' # Not needed with a .ruby-version file
|
||||||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
||||||
cache-version: 0 # Increment this number if you need to re-download cached gems
|
cache-version: 0 # Increment this number if you need to re-download cached gems
|
||||||
- uses: actions/setup-node@v4
|
# - uses: actions/setup-node@v4
|
||||||
with:
|
# with:
|
||||||
node-version: 22
|
# node-version: 22
|
||||||
cache: 'npm'
|
# cache: 'npm'
|
||||||
- name: Install node dependencies
|
# - name: Install node dependencies
|
||||||
run: npm install
|
# run: npm install
|
||||||
|
# - name: Build
|
||||||
|
# run: npm run build
|
||||||
- name: Build
|
- name: Build
|
||||||
run: npm run build
|
run: bundle exec jekyll build
|
||||||
- name: Copy
|
- name: Copy
|
||||||
run: cp -r dist/* /pages/
|
run: cp -r dist/* /pages/
|
|
@ -30,8 +30,8 @@ github_username: sneakers-the-rat
|
||||||
# directories
|
# directories
|
||||||
source: ./src
|
source: ./src
|
||||||
destination: ./dist
|
destination: ./dist
|
||||||
keep_files:
|
# keep_files:
|
||||||
- assets # Build settings
|
# - assets # Build settings
|
||||||
#theme: minima
|
#theme: minima
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-feed
|
- jekyll-feed
|
||||||
|
|
|
@ -2,5 +2,6 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||||
|
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
|
||||||
|
|
||||||
<title>{{ page.title }}</title>
|
<title>{{ page.title }}</title>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
body {
|
body {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%
|
height: 100%;
|
||||||
|
background-color: #ff0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
#container {
|
#container {
|
Loading…
Reference in a new issue