Skip to content

Commit

Permalink
revert: removed deno in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
animafps committed Oct 25, 2021
1 parent 29d2d0e commit 3c84a4f
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/Continuous_Delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3c84a4f

Please sign in to comment.