Skip to content

SFUI Build

SFUI Build #11

Workflow file for this run

name: SFUI Build
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository content
uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
- name: Install Dependencies
run: sudo apt install -y golang npm make
- name: Install Angular
run: sudo npm install -g @angular/cli
- name: List Dir Structure
run: ls -la
- name: Install npm modules
run: cd ui && npm install
- name: Make All
run: make all
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: sfui
path: |
bin/sfui
config.yaml
retention-days: 365