Release Java SDK #62
Workflow file for this run
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: Release Java SDK | |
run-name: Release Java SDK | |
on: | |
push: | |
tags: | |
- "*.*.*" # version, e.g. 1.0.0 | |
jobs: | |
generate_schemas: | |
uses: ./.github/workflows/generate-schemas.yml | |
build_rust: | |
uses: ./.github/workflows/build-c-bindings.yml | |
test-rust-crate: | |
uses: ./.github/workflows/rust-test.yml | |
build_java: | |
name: Build Java | |
runs-on: ubuntu-22.04 | |
needs: | |
- generate_schemas | |
- build_rust | |
- test-rust-crate | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
- name: Download Java schemas artifact | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: sdk-schemas-java | |
path: languages/java/src/main/java/infisical/sdk/schema/ | |
- name: Setup Java | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Download x86_64-apple-darwin files | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: libinfisical_c_files-x86_64-apple-darwin | |
path: languages/java/src/main/resources/darwin-x86-64 | |
- name: Download aarch64-apple-darwin files | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: libinfisical_c_files-aarch64-apple-darwin | |
path: languages/java/src/main/resources/darwin-aarch64 | |
- name: Download x86_64-unknown-linux-gnu files | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: libinfisical_c_files-x86_64-unknown-linux-gnu | |
path: languages/java/src/main/resources/linux-x86-64 | |
- name: Download x86_64-pc-windows-msvc files | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: libinfisical_c_files-x86_64-pc-windows-msvc | |
path: languages/java/src/main/resources/win32-x86-64 | |
- name: Publish Maven | |
uses: gradle/gradle-build-action@b5126f31dbc19dd434c3269bf8c28c315e121da2 # v2.8.1 | |
with: | |
arguments: publish | |
build-root-directory: languages/java | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |