Remove unused import from build script #40
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "**" | |
| tags-ignore: | |
| - "**" | |
| jobs: | |
| build: | |
| if: github.repository_owner == 'CommunityRadarGG' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v5 | |
| - name: Setup Java | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: Validate Gradle Wrapper | |
| uses: gradle/actions/wrapper-validation@v5 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build | |
| run: ./gradlew build | |
| - name: Extract Version from Gradle | |
| run: | | |
| version=$(./gradlew properties -q | grep "^version:" | awk '{print $2}') | |
| echo "VERSION=$version" >> $GITHUB_ENV | |
| echo $version | |
| - name: Upload Artifact | |
| if: startsWith(github.event.head_commit.message || '', 'Release') | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: communityradar-${{ env.VERSION }} | |
| path: build/libs/*-${{ env.VERSION }}.jar |