8000 fix workflow · mohammadrezaeicode/mr-excel-java@b71450c · GitHub
[go: up one dir, main page]

Skip to content

Commit b71450c

Browse files
author
m.r
committed
fix workflow
1 parent c3d55f1 commit b71450c

File tree

2 files changed

+60
-17
lines changed

2 files changed

+60
-17
lines changed

.github/workflows/build.yaml

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,29 @@ on:
66
description: 'Test Branch'
77
required: true
88
default: 'main'
9-
steps:
10-
- uses: actions/checkout@v4
11-
with:
12-
ref: ${{github.event.inputs.branch}}
13-
- uses: actions/setup-java@v4
14-
with:
15-
java-version: '17'
16-
distribution: 'temurin'
9+
jobs:
10+
test:
11+
name: Deploy package
12+
timeout-minutes: 30
13+
continue-on-error: true
14+
runs-on: 'ubuntu-latest'
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
ref: ${{github.event.inputs.branch}}
19+
- uses: actions/setup-java@v4
20+
with:
21+
java-version: '17'
22+
distribution: 'temurin'
1723

18-
- name: Setup Gradle
19-
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
24+
- name: Setup Gradle
25+
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
2026

21-
- name: Build with Gradle
22-
run: ./gradlew build
27+
- name: Build with Gradle
28+
run: ./gradlew build
2329

24-
- name: Upload build artifacts
25-
uses: actions/upload-artifact@v4
26-
with:
27-
name: Package
28-
path: build/libs
30+
- name: Upload build artifacts
31+
uses: actions/upload-artifact@v4
32+
with:
33+
name: Package
34+
path: build/libs

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0