From c8eca8adbd7b449d857f0498b6aa26c6775603fe Mon Sep 17 00:00:00 2001 From: Ionut Cicio Date: Mon, 7 Aug 2023 20:20:18 +0200 Subject: [PATCH] Delete github-pages.yml --- .github/workflows/github-pages.yml | 47 ------------------------------ 1 file changed, 47 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 f726a82..0000000 --- a/.github/workflows/github-pages.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Build and Deploy to Pages - -on: - push: - branches: ["main"] - - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow one concurrent deployment -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: actions/configure-pages@v1 - id: pages - - uses: actions/setup-node@v3 - with: - node-version: 16 - cache: 'npm' - - run: npm ci - - run: npm run build - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: ./build - - deploy: - runs-on: ubuntu-latest - needs: build - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - uses: actions/deploy-pages@v1 - id: deployment