diff options
author | DJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com> | 2021-08-20 17:17:16 -0400 |
---|---|---|
committer | DJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com> | 2021-08-20 17:17:16 -0400 |
commit | 12888a9eb0469a5462e497a29eb4d3d15bb48f3c (patch) | |
tree | 0c0ab075cfefd3fca76e7d35704f7ba20ae961f9 /.github | |
parent | 28fb656d8b285f3da2227dd859735392902a31ef (diff) | |
download | PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.tar.gz PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.tar.bz2 PerspectiveModv4-12888a9eb0469a5462e497a29eb4d3d15bb48f3c.zip |
this is why we can't have nice things
Diffstat (limited to '.github')
-rw-r--r-- | .github/perspectivemod.png | bin | 282887 -> 0 bytes | |||
-rw-r--r-- | .github/workflows/build.yml | 54 |
2 files changed, 0 insertions, 54 deletions
diff --git a/.github/perspectivemod.png b/.github/perspectivemod.png Binary files differdeleted file mode 100644 index e698546..0000000 --- a/.github/perspectivemod.png +++ /dev/null diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index dd5030b..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Build - -on: - push: - branches: - - '**' - pull_request: - -jobs: - build: - name: Build - runs-on: ubuntu-latest - env: - PROPERTIES_PATH: gradle.properties - - steps: - - uses: actions/checkout@v2 - - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 - with: - java-version: 1.8 - - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - - name: Setup ForgeGradle - run: ./gradlew setupCIWorkspace - - - name: Read mod name - id: read_mod_name - uses: christian-draeger/read-properties@1.0.1 - with: - path: ${{ env.PROPERTIES_PATH }} - property: archivesBaseName - - - name: Read mod version - id: read_mod_version - uses: christian-draeger/read-properties@1.0.1 - with: - path: ${{ env.PROPERTIES_PATH }} - property: version - - - name: Build with Gradle - run: ./gradlew build - - - name: Upload mod jar - env: - mod_jar_name: ${{ steps.read_mod_name.outputs.value }}-${{ steps.read_mod_version.outputs.value }} - mod_jar_path: build/libs/${{ steps.read_mod_name.outputs.value }}-${{ steps.read_mod_version.outputs.value }}.jar - uses: actions/upload-artifact@v1.0.0 - with: - name: ${{ env.mod_jar_name }} - path: ${{ env.mod_jar_path }} |