-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: Build and Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 22 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '22' | ||
|
||
- name: Build with Maven | ||
run: mvn clean install | ||
|
||
- name: Find JAR file | ||
id: find_jar | ||
run: | | ||
JAR_FILE=$(find target -maxdepth 1 -name "*.jar" ! -name "original*.jar" | head -n 1) | ||
echo "JAR_FILE=$JAR_FILE" >> $GITHUB_ENV | ||
- name: Upload JAR artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: my-plugin-jar | ||
path: ${{ env.JAR_FILE }} | ||
|
||
release: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Download JAR artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: my-plugin-jar | ||
path: ./target | ||
|
||
- name: Find JAR file in downloaded artifacts | ||
id: find_downloaded_jar | ||
run: | | ||
JAR_FILE=$(find ./target -maxdepth 1 -name "*.jar" ! -name "original*.jar" | head -n 1) | ||
echo "JAR_FILE=$JAR_FILE" >> $GITHUB_ENV | ||
- name: Remove older releases | ||
uses: dev-drprasad/[email protected] | ||
if: ${{ github.event_name == 'push' }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
delete_release: true | ||
tag_name: dev-build | ||
|
||
- name: Find git version | ||
id: git-version | ||
run: echo "id=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Create GitHub Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: dev-build | ||
release_name: Release ${{ steps.git-version.outputs.id }} | ||
draft: false | ||
prerelease: true | ||
|
||
- name: Upload JAR to Release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ${{ env.JAR_FILE }} | ||
asset_name: cleanscreenshare-${{ steps.git-version.outputs.id }}.jar | ||
asset_content_type: application/java-archive |
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