Skip to content

Commit

Permalink
Merge pull request #82 from sailpoint-oss/v2024Release/golang
Browse files Browse the repository at this point in the history
Update pipeline for v2024 golang release
  • Loading branch information
tyler-mairose-sp authored Aug 6, 2024
2 parents 31461b6 + 699449a commit c8016e1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-go-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,17 @@ jobs:
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.beta.yaml -g go -o api_beta --global-property skipFormModel=false --config sdk-resources/beta-config.yaml -p enumClassPrefix=true --git-repo-id golang-sdk/v2 --git-user-id sailpoint-oss
node sdk-resources/postscript.js ./api_beta
- name: After SDK Build
- name: Build V2024 SDK
id: buildV2024
if: steps.buildBeta.outcome == 'success'
run: |
cd golang-sdk
rm -rf ./api_v2024
java -jar openapi-generator-cli.jar generate -i ../idn/sailpoint-api.v2024.yaml -g go -o api_v2024 --global-property skipFormModel=false --config sdk-resources/v2024-config.yaml -p enumClassPrefix=true --git-repo-id golang-sdk/v2 --git-user-id sailpoint-oss
node sdk-resources/postscript.js ./api_v2024
- name: After SDK Build
if: steps.buildV2024.outcome == 'success'
run: |
cd golang-sdk/
go get -d ./...
Expand Down

0 comments on commit c8016e1

Please sign in to comment.