This repository was archived by the owner on Nov 11, 2025. It is now read-only.
No moar tp for yuo, for real this time #22
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: Publish build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish: | |
| name: Upload build | |
| runs-on: ubuntu-latest | |
| if: contains(github.event.head_commit.message, '[ci skip]') == false | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: Build with Gradle | |
| run: ./gradlew shadowJar | |
| - name: Upload to Blob Builds | |
| uses: WalshyDev/blob-builds/gh-action@main | |
| with: | |
| project: Galactifun | |
| releaseChannel: 'Dev' | |
| apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }} | |
| file: ./build/libs/galactifun.jar | |
| releaseNotes: ${{ github.event.head_commit.message }} |