OAS Update #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update SDK Repo Workflow | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
GO_VERSION: "1.22" | |
JAVA_VERSION: "11" | |
jobs: | |
main: | |
name: Update SDK Repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install SSH Key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
known_hosts: ${{ vars.SSH_KNOWN_HOSTS }} | |
- name: Install Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: ${{ env.JAVA_VERSION }} | |
- name: Checkout generator repo | |
uses: actions/checkout@v3 | |
with: | |
repository: "stackitcloud/stackit-sdk-generator" | |
ref: "main" | |
- name: Build | |
uses: ./.github/actions/build | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Download OAS | |
run: make download-oas | |
- name: Generate SDK | |
run: make generate-sdk | |
- name: Lint | |
working-directory: ./sdk-repo-updated | |
run: make lint skip-non-generated-files=true | |
- name: Test | |
working-directory: ./sdk-repo-updated | |
run: make test skip-non-generated-files=true | |
- name: Push SDK | |
env: | |
GH_REPO: "stackitcloud/stackit-sdk-go" | |
GH_TOKEN: ${{ secrets.SDK_PR_TOKEN }} | |
run: | | |
scripts/sdk-create-pr.sh "oas-bot-${{ github.run_id }}" "Generated from GitHub run [${{ github.run_id }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})" |