From b9473bbc29cf916fe0d2cf5f11a9130de01a8894 Mon Sep 17 00:00:00 2001 From: Peter Smith Date: Tue, 9 Jan 2024 12:31:50 +0000 Subject: [PATCH] chore: removed CI pipeline --- .github/workflows/deployment.yml | 87 -------------------------------- 1 file changed, 87 deletions(-) delete mode 100644 .github/workflows/deployment.yml diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml deleted file mode 100644 index 871bf22..0000000 --- a/.github/workflows/deployment.yml +++ /dev/null @@ -1,87 +0,0 @@ -name: Publish to GitHub Pages -run-name: node16 -on: [push] -permissions: - contents: write -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v3 - - - name: Use Node.js 🔧 - uses: actions/setup-node@v2 - with: - node-version: 16.x - - - name: Use PNPM 🔧 - uses: pnpm/action-setup@v2 - with: - version: 6.0.x - - # - name: Configure PNPM cache store path 🔧 - # id: pnpm-cache - # shell: bash - # run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - - # - name: Configure PNPM cache 🔧 - # uses: actions/cache@v3 - # with: - # path: $(pnpm store path) - # key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - # restore-keys: ${{ runner.os }}-pnpm-store- - - - name: Install and Build 🔨 - run: pnpm install && pnpm run build - - - name: Upload Artifacts 🔺 - uses: actions/upload-pages-artifact@v2 - with: - name: github-pages - path: build - - # deploy: - # needs: [build] - # runs-on: ubuntu-latest - # steps: - # - name: Checkout 🛎️ - # uses: actions/checkout@v3 - - # - name: Download Artifacts 🔻 - # uses: actions/download-artifact@v1 - # with: - # name: site - - # - name: Deploy 🚀 - # uses: JamesIves/github-pages-deploy-action@v4 - # with: - # folder: 'site' - # token: ${{ secrets.GITHUB_TOKEN }} - # clean: true - - - # Deploy job - deploy: - # Add a dependency to the build job - needs: build - # concurrency: ci-${{ github.ref }} - - # Grant GITHUB_TOKEN the permissions required to make a Pages deployment - permissions: - pages: write # to deploy to Pages - id-token: write # to verify the deployment originates from an appropriate source - - # Deploy to the github-pages environment - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - - # Specify runner + deployment step - runs-on: ubuntu-latest - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v2 # or the latest "vX.X.X" version tag for this action - with: - artifact_name: github-pages \ No newline at end of file