Skip to content

Commit

Permalink
Auto dev builds file
Browse files Browse the repository at this point in the history
  • Loading branch information
frafol committed Jun 30, 2024
1 parent 11b4732 commit aac05c7
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 1 deletion.
89 changes: 89 additions & 0 deletions .github/workflows/release.yml
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
</repository>
<repository>
<id>AlessioDP</id>
<url>https://repo.alessiodp.com/releases/</url>
<url>https://repo.alessiodp.com/snapshots/</url>
</repository>
<repository>
<id>elytrium-repo</id>
Expand Down

0 comments on commit aac05c7

Please sign in to comment.