Skip to content

Commit b1554da

Browse files
authored
Update build.yml
1 parent 840aff2 commit b1554da

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,17 @@ permissions:
1010
contents: read
1111

1212
jobs:
13-
build:
13+
prepare:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- name: Make gradlew executable
17-
run: chmod +x ./gradlew
18-
- uses: qupath/actions/.github/workflows/gradle.yml@main
16+
- uses: actions/checkout@v4
17+
- name: Grant execute permission for gradlew
18+
run: chmod +x gradlew
19+
- name: Upload workspace
20+
uses: actions/upload-artifact@v4
21+
with:
22+
name: workspace
23+
path: .
24+
build:
25+
needs: prepare
26+
uses: qupath/actions/.github/workflows/gradle.yml@main

0 commit comments

Comments
 (0)