Skip to content

Commit

Permalink
fix readme, versioning and add automatic build
Browse files Browse the repository at this point in the history
  • Loading branch information
yor42 committed Nov 15, 2024
1 parent 79b70d2 commit 9b4bc4b
Show file tree
Hide file tree
Showing 4 changed files with 122 additions and 22 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Windows, MacOS, Linux]
- MC Version and Forge version: [e.g. 14.23.4.2705-1.12.2]
- JVM: [e.g. OpenJDK, Oracle JVM]
- Modloader and Modloader version: [e.g. Forge 14.23.4.2705-1.12.2, Cleanroom 0.2.2-alpha]
- Version [e.g. 1.1.0beta1]

**Additional context**
Expand Down
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/new-idea--feature-request-.md

This file was deleted.

119 changes: 119 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java CI with Gradle

on:
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- '*.md'
pull_request:
branches: [ master ]

jobs:
build-and-update:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper

- name: Configure Gradle Properties
shell: pwsh
run: |
Add-Content $env:USERPROFILE\.gradle\gradle.properties "systemProp.https.protocols=TLSv1.2"
Add-Content $env:USERPROFILE\.gradle\gradle.properties "org.gradle.jvmargs=-Xmx3G -Dhttps.protocols=TLSv1.2"
- name: Get mod version
id: mod_version
shell: pwsh
run: |
$content = Get-Content "gradle.properties"
$version = ($content | Select-String -Pattern "mod_version\s*=\s*(.*)").Matches.Groups[1].Value.Trim()
echo "VERSION=$version" >> $env:GITHUB_ENV
- name: Get current date
id: date
env:
TZ: 'Asia/Seoul'
run: echo "NOW=$(date +'%Y%m%d-%H%M%S')" >> $env:GITHUB_ENV

- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
env:
GRADLE_OPTS: "-Dhttps.protocols=TLSv1.2 -Dorg.gradle.daemon=false"

- name: Create Release
id: create_release
uses: actions/create-release@v1
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ env.VERSION }}-${{ env.NOW }}
release_name: Build ${{ env.VERSION }} (${{ env.NOW }})
body: |
Automated build for version ${{ env.VERSION }}
Build date: ${{ env.NOW }}
This is an automatic build. it might be unstable. Here be dragons!
draft: false
prerelease: true

- name: Upload Release Asset (Main JAR)
uses: actions/upload-release-asset@v1
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/build/libs/AcademyCraft-${{ env.VERSION }}.jar
asset_name: AcademyCraft-${{ env.VERSION }}.jar
asset_content_type: application/java-archive

- name: Upload Release Asset (Dev JAR)
uses: actions/upload-release-asset@v1
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/build/libs/AcademyCraft-${{ env.VERSION }}-dev.jar
asset_name: AcademyCraft-${{ env.VERSION }}-dev.jar
asset_content_type: application/java-archive

- name: Upload Release Asset (Sources JAR)
uses: actions/upload-release-asset@v1
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/build/libs/AcademyCraft-${{ env.VERSION }}-sources.jar
asset_name: AcademyCraft-${{ env.VERSION }}-sources.jar
asset_content_type: application/java-archive

- name: Upload Artifact
uses: actions/upload-artifact@master
if: always()
with:
name: AcademyCraft
path: ${{ github.workspace }}/build/libs
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
org.gradle.jvmargs = -Xmx3G

# Mod Information
mod_version = 0.2.0
mod_version = 1.1.4-UES
maven_group = cn.academy
archives_base_name = AcademyCraft

Expand Down

0 comments on commit 9b4bc4b

Please sign in to comment.