From 624002439ff9eb4ef9ccdf45507318246606ced8 Mon Sep 17 00:00:00 2001 From: Stephen Soltan <187546598+saltman007web@users.noreply.github.com> Date: Wed, 16 Apr 2025 17:30:01 +0930 Subject: [PATCH 1/2] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 4f816a61..ff5361a8 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # roothide.github.io RootHide's Repo - - ## about this repo From 1f40145941f2382a061ff500efd2355f1f10308c Mon Sep 17 00:00:00 2001 From: Stephen Soltan <187546598+saltman007web@users.noreply.github.com> Date: Wed, 16 Apr 2025 19:34:38 +0930 Subject: [PATCH 2/2] Update static.yml --- .github/workflows/static.yml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 8a48ec94..1abc7ae4 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -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: @@ -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 @@ -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