generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 6
43 lines (41 loc) · 1.03 KB
/
upload-standalone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: standalone-program
on:
push:
branches:
- main
jobs:
create-generateRepo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Run npm steps
run: |
npm install
npm run createGenerateRepo
npm run cutUnitTests
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: saff_generate_repo.prog.abap
path: saff_generate_repo.prog.abap
create-generatorInclude:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Run npm steps
run: |
npm install
npm run createGeneratorInclude
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: saff_generator.prog.abap
path: saff_generator.prog.abap