Commit e1f580e

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2023-12-23 14:34:44
Delete .github/workflows/gh-pages.yml
1 parent 53ffa66
Changed files (1)
.github
workflows
.github/workflows/gh-pages.yml
@@ -1,38 +0,0 @@
-name: Build and deploy developer docs
-
-on:
-  push:
-    branches: ["main"]
-  workflow_dispatch:
-
-permissions:
-  contents: read
-  pages: write
-  id-token: write
-  
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    steps:
-      - name: Checkout
-        uses: actions/checkout@v4
-      - name: Setup Pages
-        uses: actions/configure-pages@v4
-      - uses: dart-lang/setup-dart@v1
-      - run: dart doc
-      - name: Upload artifact
-        uses: actions/upload-pages-artifact@v3
-        with:
-          # upload docs directory
-          path: './doc'
-
-  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