Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add github files
  • Loading branch information
HunteRoi committed Mar 20, 2023
1 parent 679a490 commit ea8d0fd
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
@@ -0,0 +1 @@
github: [hunteroi]
32 changes: 32 additions & 0 deletions .github/workflows/build-n-deploy.yml
@@ -0,0 +1,32 @@
name: Build & Deploy

on:
push:
branches: [ "master" ]

permissions:
contents: write

jobs:
build:
concurrency: ci-${{ github.ref }}

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build # The folder the action should deploy.

0 comments on commit ea8d0fd

Please sign in to comment.