mirror of
https://github.com/TibiNonEst/cauldron-dyeing.git
synced 2025-08-08 19:53:57 -05:00
Update github workflows
- Add release workflow - Add build numbers on action
This commit is contained in:
parent
38dd1d6ae7
commit
3c13e63e40
3 changed files with 55 additions and 2 deletions
24
.github/workflows/build-gradle.yml
vendored
Normal file
24
.github/workflows/build-gradle.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: build-gradle
|
||||
|
||||
on: [ push, pull_request ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: 17
|
||||
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
||||
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: ./build/libs
|
Loading…
Add table
Add a link
Reference in a new issue