-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (34 loc) · 1.27 KB
/
test_v11_update.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
name: Use v1.1 version
on: [workflow_dispatch]
jobs:
advinst-aip-build-demo:
runs-on: windows-latest
name: Test v1.1 version
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Build AIP with deprecated advinst version
uses: caphyon/advinst-github-action@main
with:
advinst-version: '16.0'
advinst-license: ${{ secrets.ADVINST_LICENSE_KEY }}
advinst-enable-automation: 'false'
aip-path: ${{ github.workspace }}\arhitect.aip
aip-build-name: DefaultBuild
aip-package-name: setup.msi
aip-output-dir: ${{ github.workspace }}\setup-arh
aip-commands: |
SetProperty FOO="foo"
SetVersion 1.2.0
- name: Build AIP with valid advinst version
uses: caphyon/advinst-github-action@deprecation-warning
with:
advinst-license: ${{ secrets.ADVINST_LICENSE_KEY }}
advinst-enable-automation: 'false'
aip-path: ${{ github.workspace }}\enterprise.aip
aip-build-name: DefaultBuild
aip-package-name: setup.msi
aip-output-dir: ${{ github.workspace }}\setup-ent
aip-commands: |
SetProperty FOO="foo"
SetVersion 1.2.0