Skip to content

Merge pull request #58 from lukso-network/update-version #83

Merge pull request #58 from lukso-network/update-version

Merge pull request #58 from lukso-network/update-version #83

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '18.18.1'
cache: 'yarn'
- name: Install ⚙️
run: yarn install --frozen-lockfile
- name: Build 🛠
run: yarn build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.