Skip to content

Commit

Permalink
Merge branch '1.19/dev' into 1.19/main
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed Oct 19, 2023
2 parents 598052c + deaccf3 commit 2e09602
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ name: Java CI
on:
push:
branches:
# main and dev versions for each mc ver here
- "1.19/main"
- "1.19/dev"
- "1.19/main"
- "1.19/dev"
workflow_dispatch:
inputs:
norelease:
Expand All @@ -19,14 +18,15 @@ jobs:
if: |
!contains(github.event.head_commit.message, '[ci skip]')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 30 # Gets the last 30 commits so the changelog might work
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: gradle
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build and Publish with Gradle
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ publishing {

if (ENV.SAPS_TOKEN) {
maven {
url "https://maven.saps.dev/minecraft"
url "https://maven.saps.dev/releases"
credentials {
username = "latvian"
password = "${ENV.SAPS_TOKEN}"
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ publishing {

if (ENV.SAPS_TOKEN) {
maven {
url "https://maven.saps.dev/minecraft"
url "https://maven.saps.dev/releases"
credentials {
username = "latvian"
password = "${ENV.SAPS_TOKEN}"
Expand Down
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ publishing {

if (ENV.SAPS_TOKEN) {
maven {
url "https://maven.saps.dev/minecraft"
url "https://maven.saps.dev/releases"
credentials {
username = "latvian"
password = "${ENV.SAPS_TOKEN}"
Expand Down

0 comments on commit 2e09602

Please sign in to comment.