From 1b1fcd535f379667756355e1446335906e2b36f2 Mon Sep 17 00:00:00 2001 From: Pat O'Connor Date: Sat, 22 Mar 2025 17:19:41 +0000 Subject: [PATCH] fix(GUIDEFRAME-51): removed inert workflow Signed-off-by: Pat O'Connor --- .github/workflows/ci.yaml | 24 ------------------------ .github/workflows/pages.yaml | 4 ++++ docs/Gemfile | 6 +++--- 3 files changed, 7 insertions(+), 27 deletions(-) delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 2892257..0000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: CI - -on: - push: - branches: ["main"] - pull_request: - -jobs: - # Build job - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.3' # Not needed with a .ruby-version file - 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 - - name: Build with Jekyll - run: | - bundle exec jekyll build - working-directory: docs \ No newline at end of file diff --git a/.github/workflows/pages.yaml b/.github/workflows/pages.yaml index c902ca7..f634456 100644 --- a/.github/workflows/pages.yaml +++ b/.github/workflows/pages.yaml @@ -37,6 +37,10 @@ jobs: ruby-version: '3.3' # Not needed with a .ruby-version file 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 + - name: Install dependencies + run: | + bundle install + working-directory: docs - name: Setup Pages id: pages uses: actions/configure-pages@v5 diff --git a/docs/Gemfile b/docs/Gemfile index 9dc0c75..a2c4ff2 100644 --- a/docs/Gemfile +++ b/docs/Gemfile @@ -1,7 +1,7 @@ source 'https://rubygems.org' gem "jekyll", "~> 4.4.1" # installed by `gem jekyll` -# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 +gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 -gem "just-the-docs", "0.10.1" # pinned to the current release -# gem "just-the-docs" # always download the latest release \ No newline at end of file +# gem "just-the-docs", "0.10.1" # pinned to the current release +gem "just-the-docs" # always download the latest release \ No newline at end of file