Skip to content

Merge pull request #6 from RedMadRobot/feature/aoe-update-4.3.0 #7

Merge pull request #6 from RedMadRobot/feature/aoe-update-4.3.0

Merge pull request #6 from RedMadRobot/feature/aoe-update-4.3.0 #7

Workflow file for this run

name: Publish CI
on:
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v3
with:
node-version: "lts/*"
- run: npm ci
- name: Build 🔧
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages 🚀
id: deployment
uses: actions/deploy-pages@v4