From 3c84a4f3c3b706b9498c3f64eba889bb09c91a1b Mon Sep 17 00:00:00 2001 From: Anima <18208134+animafps@users.noreply.github.com> Date: Mon, 25 Oct 2021 17:46:43 +1300 Subject: [PATCH] revert: removed deno in ci --- .github/workflows/Continuous_Delivery.yml | 33 ----------------------- 1 file changed, 33 deletions(-) diff --git a/.github/workflows/Continuous_Delivery.yml b/.github/workflows/Continuous_Delivery.yml index 3a4de2b..81428cc 100644 --- a/.github/workflows/Continuous_Delivery.yml +++ b/.github/workflows/Continuous_Delivery.yml @@ -56,36 +56,3 @@ jobs: with: branch: gh-pages # The branch the action should deploy to. folder: docs # The folder the action should deploy. - - deno: - name: Build and push Deno version - runs-on: ubuntu-latest - steps: - - name: Checkout Project - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 # renovate: tag=v2 - with: - fetch-depth: 0 - persist-credentials: false - token: ${{ secrets.GH_TOKEN }} - - name: Use Node.js v16 - uses: actions/setup-node@270253e841af726300e85d718a5f606959b2903c # renovate: tag=v2 - with: - node-version: 16 - registry-url: https://registry.npmjs.org/ - - name: Restore CI Cache - uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353 # renovate: tag=v2.1.6 - id: cache-restore - with: - path: node_modules - key: ${{ runner.os }}-16-${{ hashFiles('**/yarn.lock') }} - - name: Install Dependencies if Cache Miss - if: ${{ !steps.cache-restore.outputs.cache-hit }} - run: yarn --frozen-lockfile - - name: Build - run: yarn build - - run: git config --global user.email "18208134+animafps@users.noreply.github.com" - - run: git config --global user.name github-actions - - name: Push Deno Dist - run: git add . - - run: "git commit -m 'chore(deno): Deno build results [skip ci]'" - - run: git push