update gradle wrapper #23
Workflow file for this run
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: Upload Release Artifacts | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: 17 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Get current time | |
uses: srfrnk/current-time@5a4163ad035ccd9a407ec9e519c3b6ba1b633d1e | |
id: current_time | |
with: | |
format: YYYYMMDDHHmmss | |
- name: Setup ENV | |
run: echo "TAG=${{github.ref_name}}" >> $GITHUB_ENV | |
- name: Copy Maven Upload URL | |
id: extract_maven_upload_url | |
run: echo "maven_upload_url=${{secrets.MAVEN_UPLOAD_URL}}" >> $GITHUB_OUTPUT | |
- name: Build with Gradle | |
env: | |
BUILD_TIME: ${{ steps.current_time.outputs.formattedTime }} | |
BUILD_NUMBER: ${{ github.run_number }} | |
run: ./gradlew assemble | |
- name: Maven Release | |
if: steps.extract_maven_upload_url.outputs.maven_upload_url | |
env: | |
BUILD_TIME: ${{ steps.current-time.outputs.formattedTime }} | |
BUILD_NUMBER: ${{ github.run_number }} | |
MAVEN_UPLOAD_URL: ${{ secrets.MAVEN_UPLOAD_URL }} | |
MAVEN_UPLOAD_USERNAME: ${{ secrets.MAVEN_UPLOAD_USERNAME }} | |
MAVEN_UPLOAD_PASSWORD: ${{ secrets.MAVEN_UPLOAD_PASSWORD }} | |
run: ./gradlew publish | |
- name: Publish (GitHub Releases) | |
uses: Kir-Antipov/mc-publish@995edadc13559a8b28d0b7e6571229f067ec7659 | |
with: | |
github-token: ${{ github.token }} | |
files: | | |
build/libs/!(*-@(dev|sources|javadoc|slim)).jar | |
build/libs/*-@(sources|javadoc).jar | |
- name: Publish (Quilt) | |
id: publish_quilt | |
uses: Kir-Antipov/mc-publish@995edadc13559a8b28d0b7e6571229f067ec7659 | |
with: | |
modrinth-token: ${{ secrets.MODRINTH_TOKEN }} | |
curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} | |
version: ${{ github.ref_name }}+Quilt | |
version-type: beta | |
files: | | |
build/libs/!(*-@(dev|sources|javadoc|slim)).jar | |
build/libs/*-@(sources|javadoc).jar | |
- name: Notify Discord | |
uses: Up-Mods/action-discord-release@main | |
with: | |
version: ${{ github.ref_name }} | |
webhook-url: ${{ secrets.ANNOUNCEMENT_WEBHOOK_URL }} | |
curseforge-project-id: ${{ steps.publish_quilt.outputs.curseforge-id }} | |
modrinth-project-id: ${{ steps.publish_quilt.outputs.modrinth-id }} | |
thumbnail-url: https://mod-assets.upcraft.dev/promo/arcanus-continuum/icon_128x.png |