From 138b5b63f373ddf3801e092a0a9b7f2a689cb168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Pereira?= Date: Tue, 20 Aug 2024 19:24:19 -0300 Subject: [PATCH] Delete .github/workflows/gh-pages.yml --- .github/workflows/gh-pages.yml | 55 ---------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml deleted file mode 100644 index 092dfca..0000000 --- a/.github/workflows/gh-pages.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: public-build - -on: - push: - branches: [main, setup] - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - ref: 'main' - fetch-depth: 0 - - - uses: actions/checkout@v2 - with: - ref: 'setup' - fetch-depth: 0 - path: _setup - - - name: Insert setup branch - run: cp -r _setup/* . - - - name: Setup Node.js - uses: actions/setup-node@v1 - with: - node-version: '16' - - - name: Cache dependencies - uses: actions/cache@v2 - id: npm-cache - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - name: Install dependencies - run: npm ci - - - name: Build public view - run: npm run build - - - name: Deploy to GitHub Pages - uses: crazy-max/ghaction-github-pages@v2 - with: - target_branch: gh-pages - build_dir: dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -permissions: - contents: write