From 23bb051095d4a18b0b03835511a89943a848c1b5 Mon Sep 17 00:00:00 2001 From: Adam Cohen Hillel Date: Mon, 12 Feb 2024 15:07:57 -0500 Subject: [PATCH] try --- .github/dependabot.yml | 8 -------- .github/workflows/ci.yml | 22 ---------------------- .github/workflows/pages.yml | 7 ++++--- 3 files changed, 4 insertions(+), 33 deletions(-) delete mode 100644 .github/dependabot.yml delete mode 100644 .github/workflows/ci.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index ff1a325..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,8 +0,0 @@ -version: 2 -updates: - - package-ecosystem: bundler - directory: / - schedule: - interval: daily - allow: - - dependency-type: direct diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index a7b5e9b..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: CI - -on: - push: - branches: ["main"] - pull_request: - -jobs: - # Build job - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.1' # 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 diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 1df5f1e..52e9eb0 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -10,8 +10,8 @@ on: push: branches: - "work-on-the-docs" - paths: - - "docs/**" + # paths: + # - "docs/**" # Allows you to run this workflow manually from the Actions tab @@ -44,9 +44,10 @@ jobs: - name: Setup Pages id: pages uses: actions/configure-pages@v3 + working-directory: docs - name: Build with Jekyll # Outputs to the './_site' directory by default - working-directory: docs + working-directory: ./docs run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" env: JEKYLL_ENV: production