aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorisXander <xandersmith2008@gmail.com>2022-12-09 18:36:32 +0000
committerisXander <xandersmith2008@gmail.com>2022-12-09 18:36:32 +0000
commit62b1450df690c4b22c0eb42f02a6b0c507111686 (patch)
tree42167fe6114445cab34b24a50d5c9808e5282987 /.github
parente4856a17133b0567d09cb6db3821674491d57e64 (diff)
downloadYetAnotherConfigLib-62b1450df690c4b22c0eb42f02a6b0c507111686.tar.gz
YetAnotherConfigLib-62b1450df690c4b22c0eb42f02a6b0c507111686.tar.bz2
YetAnotherConfigLib-62b1450df690c4b22c0eb42f02a6b0c507111686.zip
release ci
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-publish.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml
new file mode 100644
index 0000000..96a8660
--- /dev/null
+++ b/.github/workflows/release-publish.yml
@@ -0,0 +1,37 @@
+name: Publish Release
+
+on:
+ push:
+ branches:
+ - '*/prod'
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ name: Publish with gradle
+
+ steps:
+ - uses: actions/checkout@v3
+ - name: Set up JDK
+ uses: actions/setup-java@v3
+ with:
+ java-version: 17
+ distribution: temurin
+ - uses: actions/cache@v3
+ with:
+ path: |
+ ~/.gradle/caches
+ ~/.gradle/wrapper
+ ./.gradle/loom-cache
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
+ restore-keys: |
+ ${{ runner.os }}-gradle-
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+ - name: Build with Gradle
+ run: ./gradlew releaseMod --no-daemon
+ env:
+ XANDER_MAVEN_USER: ${{ secrets.REPO_USERNAME }}
+ XANDER_MAVEN_PASS: ${{ secrets.REPO_PASSWORD }}
+ MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
+ CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}