-
-
Notifications
You must be signed in to change notification settings - Fork 55
39 lines (36 loc) · 1005 Bytes
/
build.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
name: 'Build App Package'
env:
BUILD_NUMBER: '1970.1.1'
BuildDirectory: '${{github.workspace}}\build'
ACTIONS_RUNNER_DEBUG: true
on:
workflow_call:
inputs:
build_configuration:
description: 'The build configuration to use'
type: string
required: true
default: 'Release'
bundle_Platforms:
type: string
description: 'Defines the platforms for the app package.'
required: false
default: ' x86|x64|ARM'
output_directory:
type: string
description: 'Defines the output directory for the app package'
required: false
default: '${{github.workspace}}\build'
build_number:
type: string
description: 'The build number to use'
required: true
jobs:
build:
name: 'Build openHAB Windows App'
runs-on: windows-latest
steps:
- name: script
shell: pwsh
run: |
Write-Host "Hello, world! The build number is $env:BUILD_NUMBER"