Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
39 changes: 0 additions & 39 deletions .github/workflows/docker.yaml

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/gradle-plugin-tests.yaml

This file was deleted.

54 changes: 0 additions & 54 deletions .github/workflows/gradle-test.yaml

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/ionos-cloud-sdk-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Ionos Cloud SDK Release

on:
push:
tags:
- 'v*'

workflow_dispatch:

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set release version
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
- name: Cache maven dependencies
uses: actions/cache@v2.1.6
env:
cache-name: cache-maven-repository
with:
path: |
~/.m2/repository
~/.gradle
!~/.gradle/caches/*/plugin-resolution/
!~/.m2/repository/org/openapitools/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-

- name: Run maven
run: mvn --no-snapshot-updates --batch-mode --quiet install -DskipTests -Dorg.slf4j.simpleLogger.defaultLogLevel=error

- uses: ncipollo/release-action@v1
with:
artifacts: "modules/openapi-generator-cli/target/openapi-generator-cli.jar"
name: "${{ env.RELEASE_VERSION }} (Ionos Cloud SDK Release)"
token: ${{ secrets.GITHUB_TOKEN }}
108 changes: 0 additions & 108 deletions .github/workflows/linux.yaml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/maven-plugin-tests.yaml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/misc-test.yaml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/openapi-generator-test-results.yaml

This file was deleted.

Loading