Skip to content

Commit 60d33f7

Browse files
committed
Attempt to speed up build by downloading previously build artifacts.
1 parent d3eb2d3 commit 60d33f7

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/main-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
java-version: '21'
4242
distribution: 'temurin'
4343
architecture: x64
44+
- name: Download build artifact
45+
uses: actions/download-artifact@v4
46+
with:
47+
name: build-artifact
4448
- name: Publish artifacts
4549
run: |
4650
echo "Github ref: ${GITHUB_REF}"

.github/workflows/release-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
java-version: '21'
2222
distribution: 'temurin'
2323
architecture: x64
24+
- name: Download build artifact
25+
uses: actions/download-artifact@v4
26+
with:
27+
name: build-artifact
2428
- name: Publish artifacts
2529
run: |
2630
echo "Github ref: ${GITHUB_REF}"

0 commit comments

Comments
 (0)