Skip to content

Commit

Permalink
feat: github action to auto release version
Browse files Browse the repository at this point in the history
  • Loading branch information
aiden0z committed Mar 21, 2024
1 parent 08a7b13 commit c309ae0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit c309ae0

Please sign in to comment.