mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
63 lines
2.2 KiB
YAML
63 lines
2.2 KiB
YAML
# 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://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
|
|
|
|
# Yes this is a mostly untouched Github actions template
|
|
|
|
|
|
name: Java CI with Gradle
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up JDK 8
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '8'
|
|
distribution: 'temurin' # Temurin because it's default :P
|
|
|
|
# Calculate days since 10/10/10
|
|
- name: Calculate days since 10/10/10
|
|
id: calculate_days
|
|
run: |
|
|
start_date="2010-10-10"
|
|
current_date=$(date +%Y-%m-%d)
|
|
days_since=$(( ($(date -d "$current_date" +%s) - $(date -d "$start_date" +%s)) / 86400 ))
|
|
echo "days=$days_since" >> $GITHUB_OUTPUT
|
|
|
|
# Update version files with proper sed syntax
|
|
- name: Update version files
|
|
run: |
|
|
days=${{ steps.calculate_days.outputs.days }}
|
|
# Use proper sed syntax for Linux runners
|
|
sed -i "s/public static final String VERSION = \".*\";/public static final String VERSION = \"1.0.27 BETA ($days)\";/" src/main/java/com/hbm/lib/RefStrings.java
|
|
sed -i "s/mod_build_number=.*/mod_build_number=$days/" gradle.properties
|
|
|
|
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
|
|
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
|
|
- name: Setup Gradle
|
|
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
|
|
|
|
- name: Build with Gradle Wrapper
|
|
run: ./gradlew build
|
|
|
|
- name: Upload a Build Artifact
|
|
uses: actions/upload-artifact@v4.6.0
|
|
with:
|
|
# A file, directory or wildcard pattern that describes what to upload
|
|
path: ./build/libs
|