Skip to content

Pod registration + pod selection functionality #82

Pod registration + pod selection functionality

Pod registration + pod selection functionality #82

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
pull_request: {}
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: github-pages
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node ✨
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install and Build 🔧
run: |
yarn install
yarn run build
yarn run github-post-build
env:
NODE_ENV: production
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: pages
FOLDER: dist
CLEAN: true