-
Notifications
You must be signed in to change notification settings - Fork 18
94 lines (79 loc) · 3.12 KB
/
build-powershell-sdk.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: "Build and push powershell sdk"
on:
push:
branches:
- main
paths:
- idn/**
workflow_dispatch:
jobs:
push_powershell_sdk_workflow:
name: Build and push Powershell SDK
runs-on: ubuntu-latest
steps:
# Checkout the master branch request to run rsync
- name: Checkout PR branch
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
# Checkout the main branch of api-specs
- name: Checkout API Specs Repo
uses: actions/checkout@v2
with:
repository: sailpoint-oss/powershell-sdk
path: powershell-sdk
ref: main
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Build V3 SDK
id: buildV3
run: |
cd powershell-sdk
rm -rf ./PSSailpoint/v3
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.v3.yaml -g powershell -o PSSailpoint/v3 --global-property skipFormModel=false --config sdk-resources/v3-config.yaml
node sdk-resources/postscript.js ./PSSailpoint/v3
- name: Build Beta SDK
id: buildBeta
if: steps.buildV3.outcome == 'success'
run: |
cd powershell-sdk
rm -rf ./PSSailpoint/beta
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.beta.yaml -g powershell -o PSSailpoint/beta --global-property skipFormModel=false --config sdk-resources/beta-config.yaml
- name: Build V2 SDK
id: buildV2
if: steps.buildBeta.outcome == 'success'
run: |
cd powershell-sdk
rm -rf ./PSSailpoint/v2
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.v2.yaml -g powershell -o PSSailpoint/v2 --global-property skipFormModel=false --config sdk-resources/v2-config.yaml
- name: Build CC SDK
id: buildCC
if: steps.buildV2.outcome == 'success'
run: |
cd powershell-sdk
rm -rf ./PSSailpoint/cc
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.cc.yaml -g powershell -o PSSailpoint/cc --global-property skipFormModel=false --config sdk-resources/cc-config.yaml
- name: After SDK Generation
id: buildSDK
if: steps.buildCC.outcome == 'success'
shell: pwsh
run: |
cd powershell-sdk
./PSSailpoint/Build.ps1
$DebugPreference="Continue"
Import-Module -Name '.\PSSailpoint' -Verbose
- name: After SDK Build
if: steps.buildSDK.outcome == 'success'
run: |
cd powershell-sdk
git config --unset-all http.https://github.com/.extraheader
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action Bot"
git add .
git commit -m "Automated build '${{ github.event.head_commit.message }}' powershell sdk: ${{ github.run_id }}"
git status
git remote set-url origin https://${{secrets.API_SPEC_PAT}}@github.com/sailpoint-oss/powershell-sdk.git
git remote -v
git push