Skip to content

Commit

Permalink
Merge branch 'main' of github.com:uug-ai/facial-access-control into main
Browse files Browse the repository at this point in the history
  • Loading branch information
KilianBoute committed Apr 24, 2024
2 parents 80b8b7a + 189877f commit c3c6f9e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/buildAutomation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Verify and build next.js application

on:
push:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest

defaults:
run:
working-directory: ui

steps:
- name: checkout
uses: actions/checkout@v4
- name: install dependecies
run: npm install
- name: build
run: npm run build
- name: upload static website
uses: actions/upload-artifact@v4
with:
name: uuft-static
path: out/


0 comments on commit c3c6f9e

Please sign in to comment.