This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
feat: add ability to wait for run completion #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build | |
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee | |
with: | |
arguments: delrey-master:build delrey-daemon:shadowJar delrey-client:build | |
- name: Upload Master Artifact | |
uses: actions/[email protected] | |
with: | |
name: delrey-master | |
path: "./delrey-master/build/libs" | |
- name: Upload Daemon Artifact | |
uses: actions/[email protected] | |
with: | |
name: delrey-daemon | |
path: "./delrey-daemon/build/libs" | |
- name: Upload Client Library Artifact | |
uses: actions/[email protected] | |
with: | |
name: delrey-client | |
path: "./delrey-client/build/libs" |