From efea864f224bc5ffc39c28638c7ac6fa8fe97ad1 Mon Sep 17 00:00:00 2001 From: Anvay Vahia <110357337+CyberLord09@users.noreply.github.com> Date: Wed, 9 Oct 2024 21:28:22 -0700 Subject: [PATCH] Accidently worked on wrong repository --- .github/workflows/jekyll-gh-pages.yml | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index bca55337..68fdd1e1 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -28,34 +28,19 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Setup Pages uses: actions/configure-pages@v3 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' # Ensure you are using the latest version of Python - - name: Install dependencies run: | - python -m venv .venv # Create a virtual environment - source .venv/bin/activate # Activate the virtual environment - pip install --upgrade pip # Upgrade pip in the virtual environment - pip install nbconvert pyyaml # Install nbconvert and PyYAML (yaml module) + pip install nbconvert # Add any other necessary package installations here - - name: Execute conversion script - run: | - source .venv/bin/activate # Ensure the virtual environment is activated - python scripts/convert_notebooks.py - + run: python scripts/convert_notebooks.py - name: Build with Jekyll uses: actions/jekyll-build-pages@v1 with: source: ./ destination: ./_site - - name: Upload artifact uses: actions/upload-pages-artifact@v1