From 608a568f68048151b433f82503d5435fc2af53b7 Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Tue, 13 Apr 2021 12:05:18 +0200 Subject: [PATCH] remove webapp CI --- .github/workflows/deploy-webapp.yml | 31 ----------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/deploy-webapp.yml diff --git a/.github/workflows/deploy-webapp.yml b/.github/workflows/deploy-webapp.yml deleted file mode 100644 index 1bb5cb78..00000000 --- a/.github/workflows/deploy-webapp.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Deploy webapp to Skynet - -on: - pull_request: - paths: - - "packages/webapp/**" - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: 14.x - - - name: Install dependencies - run: yarn - - - name: "Build webapp" - run: yarn workspace webapp build - env: - GATSBY_API_URL: "https://siasky.net" - - - name: "Deploy to Skynet" - uses: kwypchlo/deploy-to-skynet-action@main - with: - upload-dir: packages/webapp/public - github-token: ${{ secrets.GITHUB_TOKEN }}