From 6ce3792d401f6c351c9beb4f27e35ce083914569 Mon Sep 17 00:00:00 2001 From: Andrea Covelli <34921854+AndreaCovelli@users.noreply.github.com> Date: Wed, 8 Jan 2025 00:51:12 +0100 Subject: [PATCH] [no-log] --- .github/workflows/github-pages.yml | 66 ------------------------------ 1 file changed, 66 deletions(-) delete mode 100644 .github/workflows/github-pages.yml diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml deleted file mode 100644 index 519b7cdd..00000000 --- a/.github/workflows/github-pages.yml +++ /dev/null @@ -1,66 +0,0 @@ -name: GitHub Pages Custom Build and Deploy - -on: - push: - branches: [ main ] - paths-ignore: - - '.github/workflows/**' # Questo evita loop infiniti - pull_request: - branches: [ main ] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: "pages" - cancel-in-progress: true # Modifichiamo questo a true per evitare build simultanee - -jobs: - build: - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Cache Repository - uses: actions/cache@v3 - with: - path: | - ./* - !PRIMO\ ANNO - !SECONDO\ ANNO - !TERZO\ ANNO - key: ${{ runner.os }}-repo-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-repo- - - - name: Setup Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.1' - bundler-cache: true - - - name: Setup Pages - uses: actions/configure-pages@v4 - - - name: Build with Jekyll - uses: actions/jekyll-build-pages@v1 - with: - source: ./ - destination: ./_site - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file