Well, I can only overwrite #12
This file contains 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: Build 1.20.1 | |
on: | |
push: | |
branches: | |
- '1.20.1/**' | |
pull_request: | |
branches: | |
- '1.20.1/**' | |
env: | |
JAVA_VERSION: 17 | |
MODRINTH_TOKEN: ${{ secrets.PUBLISH_MODRINTH_TOKEN }} | |
CURSEFORGE_TOKEN: ${{ secrets.PUBLISH_CURSEFORGE_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.PUBLISH_GITHUB_TOKEN }} | |
CURSEFORGE_ID: 1027757 | |
MODRINTH_ID: nR8D9Tc2 | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Environment Variables | |
run: env | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Read mod_version from gradle.properties | |
id: read_mod_version | |
run: | | |
MOD_VERSION=$(grep 'mod_version' gradle.properties | cut -d'=' -f2) | |
echo "VERSION=$MOD_VERSION" >> $GITHUB_ENV | |
MINECRAFT_VERSION=$(grep 'minecraft_version' gradle.properties | cut -d'=' -f2) | |
echo "MINECRAFT_VERSION=$MINECRAFT_VERSION" >> $GITHUB_ENV | |
- name: Download CBC common | |
uses: Fork-on-the-Table-Collective/[email protected] | |
with: | |
credentials: ${{ secrets.GSA_CREDENTIALS }} | |
actionType: download | |
localPath: ./common/jars/createbigcannons-5.5.0-dev+mc.1.20.1-fabric-build.50.jar | |
googleFileId: 1Nj1TlU_PC_mZuEj6e5lCR3EwRTitOxt- | |
- name: Download CBC fabric | |
uses: Fork-on-the-Table-Collective/[email protected] | |
with: | |
credentials: ${{ secrets.GSA_CREDENTIALS }} | |
actionType: download | |
localPath: ./fabric/jars/createbigcannons-5.5.0-dev+mc.1.20.1-fabric-build.50.jar | |
googleFileId: 1Nj1TlU_PC_mZuEj6e5lCR3EwRTitOxt- | |
- name: Download CBC forge | |
uses: Fork-on-the-Table-Collective/[email protected] | |
with: | |
credentials: ${{ secrets.GSA_CREDENTIALS }} | |
actionType: download | |
localPath: ./forge/jars/createbigcannons-5.5.0-dev+mc.1.20.1-forge-build.50.jar | |
googleFileId: 1jKit9IvnzyucbGzooDP0tPWUAux6NYsl | |
- name: Download Modern Warfare | |
uses: Fork-on-the-Table-Collective/[email protected] | |
with: | |
credentials: ${{ secrets.GSA_CREDENTIALS }} | |
actionType: download | |
localPath: ./forge/jars/cbcmodernwarfare-0.0.5b+mc.1.20.1-forge.jar | |
googleFileId: 1wBoucGOURq5dkLx1IvQ_DP29uxB7iQd8 | |
- name: Download FTB Chunks | |
uses: Fork-on-the-Table-Collective/[email protected] | |
with: | |
credentials: ${{ secrets.GSA_CREDENTIALS }} | |
actionType: download | |
localPath: ./common/jars/ftb-chunks-fabric-2001.3.1.jar | |
googleFileId: 1syotEGMA2svNL2vaXp35yF7fD9NyDmZp | |
- name: Make Gradle Wrapper Executable | |
if: ${{ runner.os != 'Windows' }} | |
run: chmod +x ./gradlew | |
- name: Build | |
run: ./gradlew clean build | |
- name: Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifact | |
path: | | |
./common/build/libs/* | |
./fabric/build/libs/* | |
./forge/build/libs/* |