Skip to content

✨ feat(Items): Add Livingwood and Livingrock items and r… #60

✨ feat(Items): Add Livingwood and Livingrock items and r…

✨ feat(Items): Add Livingwood and Livingrock items and r… #60

Workflow file for this run

name: Blob Build Deployment
on:
push:
branches:
- main
jobs:
publish:
name: Upload Release
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, '[ci skip]') == false
steps:
- uses: actions/checkout@v4
- name: Setup java 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload to Blob Builds
uses: WalshyDev/blob-builds/gh-action@main
with:
project: DynaTech
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
file: ./target/DynaTech.jar
releaseNotes: ${{ github.event.head_commit.message }}
releaseChannel: 'Main'