Skip to content

Replace npm with yarn #68

Replace npm with yarn

Replace npm with yarn #68

name: Deploy
on:
push:
branches:
- master
jobs:
gh-pages-deploy:
name: Deploying to Github Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup yarn
run: yarn set version stable
- name: Install packages
run: yarn install --immutable
- name: Set Creds
run: git config user.name "brokiem" && git config user.email "${{ secrets.EMAIL }}"
- name: Deploy
run: yarn deploy