Skip to content

Commit

Permalink
are we on blob builds now?
Browse files Browse the repository at this point in the history
  • Loading branch information
J3fftw1 committed Jan 16, 2024
1 parent 87c14bd commit e341d09
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
name: Java Build
name: Java CI

on: push
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
- name: Set up JDK 1.8
uses: actions/[email protected]
with:
java-version: 1.8
- name: Build with Maven
run: mvn package --file pom.xml
- uses: actions/checkout@v1
- name: Set up JDK 16
uses: actions/setup-java@v1
with:
java-version: 16

- name: Build with Maven
run: mvn package

- name: Upload to Blob Builds
uses: WalshyDev/blob-builds/gh-action@main
with:
project: SoundMuffler
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
file: ./target/SoundMuffler.jar
releaseNotes: ${{ github.event.head_commit.message }}

0 comments on commit e341d09

Please sign in to comment.