add missing required openapi info fields #99
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: GraalVM Native Build And Release | |
on: | |
push: | |
branches: | |
- "mainline" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Setup GraalVM | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '23' | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Echo Versions and Paths | |
run: | | |
echo "GRAALVM_HOME: $GRAALVM_HOME" | |
echo "JAVA_HOME: $JAVA_HOME" | |
java --version | |
native-image --version | |
- name: Elevate wrapper permissions | |
run: chmod +x ./mvnw | |
- name: Build Native Binary | |
run: ./mvnw -Pnative native:compile | |
- name: Compress Native Binary | |
run: zip -j 2b2t.vc-api.zip target/2b2t.vc-api | |
- name: Upload Binary | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 2b2t.vc-api | |
path: 2b2t.vc-api.zip | |
- name: Release Artifact | |
uses: "softprops/action-gh-release@v2" | |
with: | |
prerelease: false | |
tag_name: latest | |
name: "Latest Release" | |
make_latest: true | |
files: | | |
2b2t.vc-api.zip |