update build_bsp with static files (#1485)

* update build_bsp with static files

* update

* update
This commit is contained in:
oblomov-dev 2024-10-04 09:07:08 +02:00 committed by GitHub
parent fd2269a0eb
commit 06795d18e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,27 @@
name: build_ui5_stringified
on:
push:
branches: [main]
permissions:
contents: write
jobs:
build_ui5_stringified:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: |
node ci/app2string/trans2abap.js
npm install @abaplint/cli -g
abaplint --fix ci/app2string/abaplint.jsonc
git status
- name: Open PR
uses: peter-evans/create-pull-request@v4
with:
title: Automatic Update

View File

@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path'); const path = require('path');
const sourceDir = './app/webapp'; const sourceDir = './app/webapp';
const staticDir = './ci/app2bsp/static'; const staticDir = './ci/app2bsp/static_files';
const targetDir = './output'; const targetDir = './output';
const prefix = 'z2ui5.wapa.'; const prefix = 'z2ui5.wapa.';