name: Deploy Jekyll site to Pages on: push: branches: [ main ] 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 uses: actions/checkout@v4 - name: Setup Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' bundler-cache: false - name: Install dependencies run: | bundle install - name: Setup Pages uses: actions/configure-pages@v4 - name: Build with Jekyll run: | echo "Ruby version: $(ruby --version)" echo "Bundler version: $(bundle --version)" echo "Jekyll version: $(bundle exec jekyll --version)" echo "Listing files before build:" ls -la echo "Listing _labs directory:" ls -la _labs/ echo "Listing _labs/introducing_attacks directory:" ls -la _labs/introducing_attacks/ bundle exec jekyll build --verbose echo "Listing _site directory after build:" ls -la _site/ echo "Listing _site/labs directory:" ls -la _site/labs/ || echo "No labs directory found" echo "Listing _site/assets directory:" ls -la _site/assets/ || echo "No assets directory found" env: JEKYLL_ENV: production PAGES_REPO_NWO: cliffe/HacktivityLabSheets - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: path: ./_site 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