diff options
| author | Dante Niewenhuis <d.niewenhuis@hotmail.com> | 2025-05-19 13:31:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-19 13:31:34 +0200 |
| commit | e9a1b6078e366a8ee071f5d423a1874608618e4d (patch) | |
| tree | ef539af46703cd25fb66775b4580c3460c72be91 /.github/workflows/pages.yml | |
| parent | d70312f122d9ef7c31b05757239ffc66af832dee (diff) | |
Removing gh-pages site from master branch (#338)
* Removing site from master branch
* Updated README.md
Diffstat (limited to '.github/workflows/pages.yml')
| -rw-r--r-- | .github/workflows/pages.yml | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index 7a232650..00000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Deploy opendc.org - -on: - push: - branches: ["master"] - workflow_dispatch: - -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - build: - defaults: - run: - working-directory: site - runs-on: ubuntu-22.04 - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: "18" - cache: 'npm' - cache-dependency-path: site/package-lock.json - - name: Setup Pages - id: pages - uses: actions/configure-pages@v5 - - name: Install dependencies - run: npm ci - - name: Build with Docusaurus - run: npm run build - env: - DOCUSAURUS_URL: ${{ steps.pages.outputs.origin }} - DOCUSAURUS_BASE_PATH: ${{ steps.pages.outputs.base_path }}/ - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: ./site/build - - deploy: - needs: build - - permissions: - contents: read - pages: write - id-token: write - - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-22.04 - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 |
