28 lines
601 B
YAML
28 lines
601 B
YAML
name: Build und Test
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows
|
|
steps:
|
|
- name: Repository auschecken
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Release bauen und Tests ausführen
|
|
shell: cmd
|
|
run: scripts\build-release.cmd
|
|
|
|
- name: Deployment-Ordner erzeugen
|
|
shell: cmd
|
|
run: scripts\package-release.cmd
|
|
|
|
- name: Deployment-Artefakt bereitstellen
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: BizTalkSapEnvironmentInventory-deploy
|
|
path: artifacts\BizTalkSapEnvironmentInventory-deploy
|
|
|