Skip to content

Commit a507f0f

Browse files
authored
Update publish.yml
1 parent aebae99 commit a507f0f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@ jobs:
55
build:
66
runs-on: ubuntu-latest
77
steps:
8-
- name: checkout repository
8+
- name: Checkout Repository
99
uses: actions/checkout@v3
10-
- name: setup jdk
10+
- name: Setup JDK
1111
uses: actions/setup-java@v3
1212
with:
1313
distribution: microsoft
1414
java-version: 17
15-
cache: gradle
16-
- name: build
15+
- name: Make Gradle executable
16+
run: chmod 755 gradlew
17+
- name: Build
1718
run: ./gradlew build
18-
- name: read properties
19+
- name: Read Properties
1920
id: read_properties
2021
run: cat gradle.properties >> $GITHUB_OUTPUT
21-
- name: release
22+
- name: Release
2223
uses: ncipollo/release-action@v1.12.0
2324
with:
2425
name: ${{format('SimpleClient {0}', steps.read_properties.outputs.simpleclient_version)}}

0 commit comments

Comments
 (0)