We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 840aff2 commit b1554daCopy full SHA for b1554da
1 file changed
.github/workflows/build.yml
@@ -10,9 +10,17 @@ permissions:
10
contents: read
11
12
jobs:
13
- build:
+ prepare:
14
runs-on: ubuntu-latest
15
steps:
16
- - name: Make gradlew executable
17
- run: chmod +x ./gradlew
18
- - uses: qupath/actions/.github/workflows/gradle.yml@main
+ - uses: actions/checkout@v4
+ - name: Grant execute permission for gradlew
+ 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