mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 11:53:29 +01:00
github actions build
This commit is contained in:
parent
e7cbb445c5
commit
84523a06d4
2 changed files with 27 additions and 18 deletions
27
.github/workflows/main.yml
vendored
Normal file
27
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
on: [push, pull_request]
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Clone repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '17'
|
||||||
|
distribution: 'temurin'
|
||||||
|
- name: Cache
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.gradle/caches
|
||||||
|
~/.gradle/wrapper
|
||||||
|
key: ${{ hashFiles('**/build.gradle', '**/gradle-wrapper.properties') }}
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
chmod +x ./gradlew
|
||||||
|
./gradlew build --no-daemon
|
||||||
|
- name: Upload
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
path: build/libs/**.jar
|
|
@ -1,18 +0,0 @@
|
||||||
steps:
|
|
||||||
build:
|
|
||||||
image: eclipse-temurin:17-jdk
|
|
||||||
commands:
|
|
||||||
- chmod +x ./gradlew
|
|
||||||
- ./gradlew build --no-daemon
|
|
||||||
maven-publish:
|
|
||||||
image: eclipse-temurin:17-jdk
|
|
||||||
when:
|
|
||||||
event: [push, manual]
|
|
||||||
branch: main
|
|
||||||
commands:
|
|
||||||
- chmod +x ./gradlew
|
|
||||||
- ./gradlew publish --no-daemon
|
|
||||||
environment:
|
|
||||||
- LOCAL_MAVEN=/var/www/maven
|
|
||||||
volumes:
|
|
||||||
- /var/www/maven:/var/www/maven
|
|
Loading…
Reference in a new issue