Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Merge pull request #873 from UnicacityAddon/develop #52

Merge pull request #873 from UnicacityAddon/develop

Merge pull request #873 from UnicacityAddon/develop #52

Workflow file for this run

name: Release
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
labyaddon:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 🔥 Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: 🔑 Grant execute permission for gradlew
run: chmod +x gradlew
- name: 🔨 Build with Gradle
run: ./gradlew build --full-stacktrace
- name: 📈 Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: build/libs/*-release.jar
wiki:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 🐍 Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: 📦 Install mkdocs dependencies
run: |
pip install mkdocs-material
pip install mkdocs-git-revision-date-localized-plugin
- name: 🔨 Build and deploy mkdocs
run: mkdocs gh-deploy --force