Quick Build Test

This commit is contained in:
Koopa 2025-01-31 20:30:54 -05:00
parent 59e4320745
commit 0975f5611b

View File

@ -1,53 +1,53 @@
name: Build name: Build
on: on:
push: push:
branches: [ "main" ] branches: [ "main" ]
pull_request: pull_request:
branches: [ "main" ] branches: [ "main" ]
release: release:
types: [created] types: [created]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: read contents: read
packages: write packages: write
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up JDK 17 - name: Set up JDK 17
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
java-version: '17' java-version: '17'
distribution: 'temurin' distribution: 'temurin'
cache: maven cache: maven
- name: Build with Maven - name: Build with Maven
run: mvn -B package --file pom.xml run: mvn -B package --file pom.xml
- name: Upload build artifacts - name: Upload build artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: NoBullying name: NoBullying
path: target/nobullying-*.jar path: target/nobullying-*.jar
# Create release with artifacts when a release is created # Create release with artifacts when a release is created
release: release:
needs: build needs: build
if: github.event_name == 'release' if: github.event_name == 'release'
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: write contents: write
steps: steps:
- name: Download build artifacts - name: Download build artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v3
with: with:
name: NoBullying name: NoBullying
- name: Upload release artifacts - name: Upload release artifacts
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
files: nobullying-*.jar files: nobullying-*.jar