Skip to content

Changed version to 1.0.0 on package.json #14

Changed version to 1.0.0 on package.json

Changed version to 1.0.0 on package.json #14

Workflow file for this run

name: Bundle and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Configure git
run: |
git config user.name "GitHubActions"
git config user.email "<deploy@actions.openscd.github.io>"
- name: Install dependencies
run: npm ci
- name: Bundle
run: npm run-script bundle
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist # The folder the action should deploy.