Skip to content

Commit de24055

Browse files
committed
Fixed docs
1 parent 6281f0d commit de24055

42 files changed

Lines changed: 255 additions & 1173 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/jekyll-gh-pages.yml

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,54 @@
1-
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
2-
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
1+
# Build and deploy Jekyll documentation site to GitHub Pages
2+
name: Deploy Documentation to GitHub Pages
33

44
on:
5-
# Runs on pushes targeting the default branch
65
push:
76
branches: ["master"]
7+
paths:
8+
- 'docs/**'
9+
- '.github/workflows/jekyll-gh-pages.yml'
810

911
# Allows you to run this workflow manually from the Actions tab
1012
workflow_dispatch:
1113

12-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
1314
permissions:
1415
contents: read
1516
pages: write
1617
id-token: write
1718

18-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2019
concurrency:
2120
group: "pages"
2221
cancel-in-progress: false
2322

2423
jobs:
25-
# Build job
2624
build:
2725
runs-on: ubuntu-latest
2826
steps:
2927
- name: Checkout
3028
uses: actions/checkout@v4
29+
30+
- name: Setup Ruby
31+
uses: ruby/setup-ruby@v1
32+
with:
33+
ruby-version: '3.1'
34+
bundler-cache: true
35+
working-directory: docs
36+
3137
- name: Setup Pages
3238
uses: actions/configure-pages@v5
39+
3340
- name: Build with Jekyll
34-
uses: actions/jekyll-build-pages@v1
35-
with:
36-
source: ./
37-
destination: ./_site
41+
run: |
42+
cd docs
43+
bundle exec jekyll build --baseurl "/gentelella"
44+
env:
45+
JEKYLL_ENV: production
46+
3847
- name: Upload artifact
3948
uses: actions/upload-pages-artifact@v3
49+
with:
50+
path: docs/_site
4051

41-
# Deployment job
4252
deploy:
4353
environment:
4454
name: github-pages

JQUERY_ELIMINATION_PLAN.md

Lines changed: 0 additions & 239 deletions
This file was deleted.

RELEASE_v2.1.4.md

Lines changed: 0 additions & 79 deletions
This file was deleted.

0 commit comments

Comments
 (0)