refactor: Try new github actions script
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 1m48s

This commit is contained in:
2024-06-23 00:56:47 -04:00
parent ab6b909fba
commit 6167a713dd
3 changed files with 14 additions and 6 deletions

View File

@@ -3,7 +3,8 @@ run-name: ${{ gitea.actor }} is building a BAB App artifact 🚀
on:
push:
branches:
- devel
- main
- alpha
jobs:
build:
@@ -30,10 +31,13 @@ jobs:
run: |
/bin/cat .env.local
- name: Build Project
run: quasar build -m pwa
- name: Get Version Number
run: npm run build
- name: Set VERSION from VERSION file
id: get_version
run: echo "::set-output name=VERSION::$(node -p "require('./package.json').version")"
run: |
VERSION=$(cat VERSION)
echo "VERSION=$VERSION"
echo "::set-output name=VERSION::$VERSION"
- name: Tarfile
run: |
cd dist/pwa