Test build workflow
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 2m10s

This commit is contained in:
2023-12-02 22:14:26 -05:00
parent 70450f4185
commit 9097e79bba

View File

@@ -1,19 +1,28 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
name: Build BAB Application Deployment Artifact
run-name: ${{ gitea.actor }} is building an artifact 🚀
on:
push:
branches:
- main
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
build:
runs-on: ubuntu-18.04
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
- 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 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