Lint info.xml / xml-lint (push) Successful in 19s
Lint PHP / php-lint (8.2) (push) Successful in 47s
Lint PHP / php-lint (8.3) (push) Successful in 38s
Lint PHP / php-lint (8.4) (push) Successful in 35s
PHPUnit / unit-tests (push) Successful in 37s
Build release artifact / package (push) Failing after 55s
No package-lock.json is committed (intentionally gitignored), so npm ci has nothing to install from and fails with EUSAGE.
36 lines
710 B
YAML
36 lines
710 B
YAML
name: Build release artifact
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
package:
|
|
runs-on: gitea-runner-server03
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '24'
|
|
|
|
- uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.3'
|
|
coverage: none
|
|
|
|
- name: Install JS dependencies
|
|
run: npm install
|
|
|
|
- name: Build frontend
|
|
run: npm run build
|
|
|
|
- name: Package appstore artifact
|
|
run: make appstore
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: workflow_deck_automation-${{ gitea.ref_name }}
|
|
path: build/artifacts/appstore/*.tar.gz
|