From 67a9cf7ead6e5d8adeae6cf41f26e745f9ad0a8e Mon Sep 17 00:00:00 2001 From: Hofi Date: Mon, 6 May 2024 14:01:58 +0200 Subject: [PATCH] CI: Removed github-pages.yml workflow file CI: Redirection is not needed for http://syslog-ng.github.io/syslog-ng/ Signed-off-by: Hofi --- .github/workflows/github-pages.yml | 54 ------------------------------ 1 file changed, 54 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 b69728ec8fe..00000000000 --- a/.github/workflows/github-pages.yml +++ /dev/null @@ -1,54 +0,0 @@ -# Simple workflow for deploying static redirection content to Doc GitHub Pages -name: Deploy static redirection content to Pages - -on: - # Allows you to run this workflow manually from the Actions tab, no needs to run automatically - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - # Single deploy job since we're just deploying - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - - name: Setup Pages - run: | - pwd - mkdir github-pages.tmp - cd github-pages.tmp - cat < index.html - - - - - - Redirecting... - - -

If you are not redirected automatically, click here.

- - - EOF - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: './github-pages.tmp' - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4