6 Commits

Author SHA1 Message Date
2bb9591833 0.0.2 2023-12-02 23:15:05 -05:00
b69e9c9db6 Remove upload step
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m51s
2023-12-02 23:02:44 -05:00
1518afbf83 Install yarn in the workflow 2023-12-02 22:57:45 -05:00
68d7e7a956 Fix typo
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 4m24s
2023-12-02 22:53:50 -05:00
9097e79bba Test build workflow
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 2m10s
2023-12-02 22:14:26 -05:00
70450f4185 Add demo actions
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m13s
2023-12-02 21:54:54 -05:00
2 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
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

View File

@@ -1,6 +1,6 @@
{
"name": "oys_bab",
"version": "0.0.1",
"version": "0.0.2",
"description": "Manage a Borrow a Boat program for a Yacht Club",
"productName": "OYS Borrow a Boat",
"author": "Patrick Toal <ptoal@takeflight.ca>",