From 91dfeb4ccb2b773b02a78a9aac9f5c217d90e359 Mon Sep 17 00:00:00 2001 From: yitzy299 Date: Thu, 16 Sep 2021 18:30:20 +0100 Subject: [PATCH] Fix actions --- .github/workflows/build.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48f6c91..3cc1d2b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,10 +29,18 @@ jobs: - name: make gradle wrapper executable if: ${{ runner.os != 'Windows' }} run: chmod +x ./gradlew + - name: Download Ledger + uses: actions/checkout@v2 + with: + repository: 'QuiltServerTools/Ledger' + ref: 'master' + path: 'ledger' + - name: Publish Ledger to mavenlocal + run: cd ./ledger && ./gradlew publishToMavenLocal && cd .. - name: build run: ./gradlew build - name: capture build artifacts - if: ${{ runner.os == 'Linux' && matrix.java == '16' }} # Only upload artifacts built from latest java on one OS + if: ${{ runner.os == 'Linux' && matrix.java == '16' }} uses: actions/upload-artifact@v2 with: name: Artifacts