Skip to content

Commit

Permalink
💚 Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
maremarismaria committed Aug 2, 2024
1 parent bfaa5e8 commit 06dbd47
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 41 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: cd

on: [push, pull_request]

jobs:
cd:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [14]

steps:
- name: Checkout
uses: actions/checkout@master

- name: Setup node env
uses: actions/setup-node@v2.1.2

with:
node-version: ${{ matrix.node }}

- name: Install dependencies
run: npm

- name: Generate
run: npm generate

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist

41 changes: 0 additions & 41 deletions .github/workflows/ci.yml

This file was deleted.

0 comments on commit 06dbd47

Please sign in to comment.