diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index 4250f02..0000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Pages -on: - push: - branches: [main] -permissions: - pages: write - id-token: write -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Copy badges.md - run: | - mkdir _src - cp badges.md _src/README.md - - uses: actions/configure-pages@v3 - - uses: actions/jekyll-build-pages@v1 - with: - source: _src - - uses: actions/upload-pages-artifact@v2 - deploy: - needs: build - runs-on: ubuntu-latest - steps: - - id: deployment - uses: actions/deploy-pages@v2 - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }}