Skip to content

Comment out GitHub Pages deployment #3

Comment out GitHub Pages deployment

Comment out GitHub Pages deployment #3

Workflow file for this run

# name: Deploy to GitHub Pages
# on:
# push:
# branches:
# - main
# paths:
# - 'Threads_exercises/**'
# workflow_dispatch:
# permissions:
# contents: read
# pages: write
# id-token: write
# concurrency:
# group: "pages"
# cancel-in-progress: false
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: '3.11'
# - name: Install dependencies
# run: |
# pip install beautifulsoup4 requests
# - name: Generate Static HTML
# run: |
# cd Threads_exercises
# python generate_static_site.py
# - name: Setup Pages
# uses: actions/configure-pages@v4
# - name: Upload artifact
# uses: actions/upload-pages-artifact@v3
# with:
# path: './Threads_exercises/dist'
# deploy:
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v4
# - name: Deployment Complete
# run: |
# echo "🎉 Site deployed successfully!"
# echo "🌐 Visit: ${{ steps.deployment.outputs.page_url }}"