Update .gitea/workflows/release.yaml
This commit is contained in:
parent
e523385e5c
commit
25a1d92e52
@ -22,5 +22,32 @@ jobs:
|
||||
with:
|
||||
context: ./discordbot
|
||||
push: true
|
||||
tags: gitea.xeovalyte.dev/xeovalyte/polarcraft:latest
|
||||
tags: gitea.xeovalyte.dev/xeovalyte/polarcraft:nightly
|
||||
|
||||
|
||||
Build and Publish Minecraft Mod:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 17
|
||||
|
||||
- name: Grant execute permission for gradlew
|
||||
working-directory: ./mod
|
||||
run: chmod +x gradlew
|
||||
|
||||
- name: Build with Gradle
|
||||
working-directory: ./mod
|
||||
run: ./gradlew build
|
||||
|
||||
- name: Upload Artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: polarcraft-mod.jar
|
||||
path: |
|
||||
mod/build/libs/*.jar
|
||||
!mod/build/libs/*-sources.jar
|
||||
!mod/build/libs/*-dev.jar
|
Loading…
Reference in New Issue
Block a user