diff --git a/.github/workflows/build-update.yml b/.github/workflows/build-update.yml deleted file mode 100644 index 20d8d45..0000000 --- a/.github/workflows/build-update.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build Update - -on: - workflow_dispatch: - push: - branches: [ main ] - -jobs: - main: - runs-on: windows-latest - - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Use Node.js - uses: actions/setup-node@v1 - with: - node-version: '16.x' - - name: Build Update - run: | - yarn --frozen-lockfile - yarn build:dir - yarn build-update - - name: Deploy - if: success() - uses: crazy-max/ghaction-github-pages@v2 - with: - commit_message: Update app - build_dir: ./build/update - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}