56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
name: Build and Publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'dev'
|
|
|
|
jobs:
|
|
Build and Publish Discord Bot:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: docker/login-action@v2
|
|
with:
|
|
registry: gitea.xeovalyte.dev
|
|
username: ${{ gitea.actor }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- uses: docker/build-push-action@master
|
|
with:
|
|
context: ./discordbot
|
|
push: true
|
|
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
|
|
|
|
|