-
Notifications
You must be signed in to change notification settings - Fork 907
50 lines (41 loc) · 1.5 KB
/
build-commit.yml
File metadata and controls
50 lines (41 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# 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:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
environment: staging
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@v6
- name: Setup Java 25
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 25
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-read-only: false
- name: Execute Gradle build
run: ./gradlew build
- name: Upload artifacts
uses: actions/upload-artifact@v7
with:
name: sodium-artifacts-${{ steps.ref.outputs.branch }}
path: build/mods/*.jar
- name: Publish Release Snapshot to CaffeineMC Maven
env:
ORG_GRADLE_PROJECT_caffeineMCMavenUsername: ${{ secrets.CAFFEINEMC_MAVEN_USERNAME }}
ORG_GRADLE_PROJECT_caffeineMCMavenPassword: ${{ secrets.CAFFEINEMC_MAVEN_PASSWORD }}
if: ${{ env.ORG_GRADLE_PROJECT_caffeineMCMavenUsername != '' && env.ORG_GRADLE_PROJECT_caffeineMCMavenPassword != '' }}
run: ./gradlew publishAllPublicationsToCaffeineMCRepository