diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..3f7eb25 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,34 @@ +name: auto release version + +on: + push: + tags: + - "v*.*.*" + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 1.8 + uses: actions/setup-java@v4 + with: + java-version: '8' + distribution: 'zulu' + + # Configure Gradle for optimal use in GiHub Actions, including caching of downloaded dependencies. + - name: Setup Gradle + uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 + + - name: Build Jars + run: ./gradlew jar + + - name: Create Release + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') + with: + files: ./build/libs/*.jar diff --git a/README.md b/README.md index e4ca0de..ab5be0e 100644 --- a/README.md +++ b/README.md @@ -102,9 +102,9 @@ Use flowing parameters to initialize the websocket connection to guacamole tunne ## Release -### Version 1.5.3 +### Version 1.5.4 -* Support Guacamole 1.5.3. +* Support Guacamole 1.5.4. * Additionally, support send JWT via HTTP header `Guacamole-Auth-Jwt` to get the Guacamole Authorization Token. * Add a [react example app](./example-app) to show how to use guacamole-auth-jwt.