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