From 705c7e2e19873a811a49b20e4541b35b07e86965 Mon Sep 17 00:00:00 2001 From: Tanmoy Sarkar <57363826+tanmoysrt@users.noreply.github.com> Date: Tue, 17 Oct 2023 00:16:49 +0530 Subject: [PATCH] Delete .github/workflows/deploy-website.yml --- .github/workflows/deploy-website.yml | 52 ---------------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/deploy-website.yml diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml deleted file mode 100644 index 5d43e51..0000000 --- a/.github/workflows/deploy-website.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Deploy Dashboard - -on: - push: - branches: [ develop ] - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [16.x] - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: | - **/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - - - name: Install dependencies - run: yarn - - # - name: Run the tests and generate coverage report - # run: npm test -- --coverage - - # - name: Upload coverage to Codecov - # uses: codecov/codecov-action@v1 - - - name: Build - run: yarn run build - - - name: Deploy - run: | - git config --global user.name tanmoysrt - git config --global user.email admin@swiftwave.org - git remote set-url origin https://${github_token}@github.com/${repository} - yarn run deploy - env: - user_name: 'github-actions[bot]' - user_email: 'github-actions[bot]@users.noreply.github.com' - github_token: ${{ secrets.ACTIONS_DEPLOY_ACCESS_TOKEN }} - repository: ${{ github.repository }}