Skip to content

Commit

Permalink
CI improvements (#33)
Browse files Browse the repository at this point in the history
* Update gradle.yml

* Update gradle.yml

* Update

* Update gradle.yml

* Update gradle.yml

* Update gradle.yml
  • Loading branch information
smartcmd authored Jun 1, 2023
1 parent 3f612fa commit cb29a3d
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,23 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '19'
distribution: 'temurin'
cache: 'gradle'
- run: gradle build
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '19'
distribution: 'temurin'
cache: 'gradle'
- run: gradle build
- name: Upload Allay-API
uses: actions/upload-artifact@v3
if: success()
with:
name: Allay-API
path: Allay-API/build/libs/Allay-API.jar

- name: Upload Allay-Server
uses: actions/upload-artifact@v3
if: success()
with:
name: Allay-Server
path: Allay-Server/build/libs/Allay-Server.jar

0 comments on commit cb29a3d

Please sign in to comment.