Skip to content

autoupdater

autoupdater #2

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: 'adopt'
java-version: '17'
java-package: jdk
architecture: x64
- name: Package with Maven
run: mvn -B package
- name: Upload to Blob Builds
uses: WalshyDev/blob-builds/gh-action@main
with:
project: SlimefunAdvancements
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
file: ./target/sfadvancements.jar
releaseNotes: ${{ github.event.head_commit.message }}