Files
bab-app/.gitea/workflows/build.yaml
Patrick Toal b69e9c9db6
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m51s
Remove upload step
2023-12-02 23:02:44 -05:00

31 lines
772 B
YAML

name: Build BAB Application Deployment Artifact
run-name: ${{ gitea.actor }} is building an artifact 🚀
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Install yarn
run: npm install --global yarn
- name: Install Quasar CLI
run: npm install -g @quasar/cli
- name: Build Project
run: quasar build -m pwa
# - name: Archive Production Artifact
# uses: actions/upload-artifact@v2
# with:
# name: build-artifact
# path: dist/pwa