Skip to content

Workflow file for this run

name: build_dev
on:
push:
branches:
- dev
jobs:
build_signer:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.10.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build signer
run: npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.6.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: build
FOLDER: dist
CLEAN: true