Skip to content

CI-Build

CI-Build #654

Workflow file for this run

name: CI-Build
on:
push:
workflow_dispatch:
schedule:
- cron: '21 21 * * *'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate Monitor 🧑‍🔧
run: ./build.sh
- name: Archive 🗃️
uses: actions/upload-artifact@v4
with:
path: build/*
- name: Deploy 🚀
if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build
git-config-name: GitHub Actions
git-config-email: [email protected]