Skip to content

Commit c835052

Browse files
author
Roman Ivanov
committed
SDKJAVA-406: fix indents
Signed-off-by: Roman Ivanov <ext-roman.ivanov@here.com>
1 parent 882461c commit c835052

File tree

2 files changed

+32
-32
lines changed

2 files changed

+32
-32
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ jobs:
1111
if: "!contains(github.event.head_commit.message, '[skip release]')"
1212

1313
steps:
14-
- uses: actions/checkout@v4
15-
with:
16-
ref: master
17-
fetch-depth: 0
18-
- name: Set up JDK 17
19-
uses: actions/setup-java@v4
20-
with:
21-
java-version: '17'
22-
distribution: 'temurin'
23-
- name: Test
24-
run: .github/scripts/test.sh
25-
- name: Push git tag
26-
run: .github/scripts/push-tag.sh
27-
- name: Deploy Release
28-
env:
29-
GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }}
30-
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
31-
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
32-
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
33-
GPG_PRIVATE_KEY: ${{ secrets.GPG_KEY }}
34-
run: .github/scripts/deploy.sh
14+
- uses: actions/checkout@v4
15+
with:
16+
ref: master
17+
fetch-depth: 0
18+
- name: Set up JDK 17
19+
uses: actions/setup-java@v4
20+
with:
21+
java-version: '17'
22+
distribution: 'temurin'
23+
- name: Test
24+
run: .github/scripts/test.sh
25+
- name: Push git tag
26+
run: .github/scripts/push-tag.sh
27+
- name: Deploy Release
28+
env:
29+
GPG_KEY_NAME: ${{ secrets.GPG_KEY_NAME }}
30+
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
31+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
32+
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
33+
GPG_PRIVATE_KEY: ${{ secrets.GPG_KEY }}
34+
run: .github/scripts/deploy.sh

.github/workflows/test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
17-
with:
18-
ref: ${{ github.event.pull_request.head.sha }}
19-
fetch-depth: 0
20-
- name: Set up JDK 17
21-
uses: actions/setup-java@v4
22-
with:
23-
java-version: '17'
24-
distribution: 'temurin'
25-
- name: Test
26-
run: .github/scripts/test.sh
16+
- uses: actions/checkout@v4
17+
with:
18+
ref: ${{ github.event.pull_request.head.sha }}
19+
fetch-depth: 0
20+
- name: Set up JDK 17
21+
uses: actions/setup-java@v4
22+
with:
23+
java-version: '17'
24+
distribution: 'temurin'
25+
- name: Test
26+
run: .github/scripts/test.sh

0 commit comments

Comments
 (0)