47 lines
1.5 KiB
YAML
Executable File
47 lines
1.5 KiB
YAML
Executable File
# Used when a commit is pushed to the repository
|
|
# This makes use of caching for faster builds and uploads the resulting artifacts
|
|
name: build-commit
|
|
|
|
on: [ push, workflow_dispatch ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Extract current branch name
|
|
shell: bash
|
|
# bash pattern expansion to grab branch name without slashes
|
|
run: ref="${GITHUB_REF#refs/heads/}" && echo "branch=${ref////-}" >> $GITHUB_OUTPUT
|
|
id: ref
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 21
|
|
- name: Initialize caches
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.gradle/caches
|
|
~/.gradle/loom-cache
|
|
~/.gradle/wrapper
|
|
key: ${{ runner.os }}-build-commit-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-build-commit-
|
|
- name: Gradle deez
|
|
uses: gradle/actions/setup-gradle@v3
|
|
- name: Build artifacts
|
|
run: ./gradlew build
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: nitori-artifacts-${{ steps.ref.outputs.branch }}
|
|
path: build/libs/*.jar
|
|
- name: Reposilite upload
|
|
run: ./gradlew publish
|
|
env:
|
|
USERNAME: ${{ secrets.ORG_GRADLE_PROJECT_GENSOREPOUSERNAME }}
|
|
TOKEN: ${{ secrets.ORG_GRADLE_PROJECT_GENSOREPOPASSWORD }} |