From d5551a0b5c9af6049b2901cd2a7d803453451895 Mon Sep 17 00:00:00 2001 From: Keavon Chambers Date: Sat, 10 Apr 2021 22:02:36 -0700 Subject: [PATCH] Remove continuous deployment with GitHub Actions --- .github/workflows/cd.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/cd.yml diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml deleted file mode 100644 index 2b7b1ce3..00000000 --- a/.github/workflows/cd.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Continuous Deployment - -on: - push: - branches: [ master ] - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: 🔧 Set up Node - uses: actions/setup-node@v1 - with: - node-version: '14.x' - - - name: 🚧 Install Node dependencies - run: cd client/web && npm install - - - name: 👷 Build Graphite web client - run: cd client/web && npm run build - - - name: 🚀 Deploy web client - uses: JamesIves/github-pages-deploy-action@4.1.1 - with: - branch: deploy - folder: client/web/dist - single-commit: true - git-config-name: GitHub Actions