Skip to content
Closed
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
22 changes: 18 additions & 4 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
branches: ["patch-1"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -22,7 +22,7 @@ concurrency:
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
# Single deploy job
deploy:
environment:
name: github-pages
Expand All @@ -31,13 +31,27 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Jekyll
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # Use the latest stable Ruby version
bundler-cache: true

- name: Install Jekyll and Build
run: |
gem install jekyll
bundle install
jekyll build

- name: Setup Pages
uses: actions/configure-pages@v5

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: '.'
path: './_site' # Upload Jekyll's build output directory

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# roothide.github.io
RootHide's Repo



## about this repo


Expand Down