Skip to content

Commit 09aa210

Browse files
authored
Update Workflow Configurations (#882)
1 parent 1d8a995 commit 09aa210

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/gradle.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Java CI
22
on:
33
push:
44
branches:
5-
- master
65
- '[3-9]+.[3-9]+.x'
76
jobs:
87
release:

.github/workflows/release.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
jobs:
99
release:
1010
runs-on: ubuntu-latest
11-
strategy:
12-
matrix:
13-
java: ['8']
1411
env:
1512
GIT_USER_NAME: puneetbehl
1613
GIT_USER_EMAIL: [email protected]
@@ -23,11 +20,11 @@ jobs:
2320
- name: Set up JDK
2421
uses: actions/setup-java@v1
2522
with:
26-
java-version: ${{ matrix.java }}
23+
java-version: 8
2724
- name: Extract branch name
2825
if: success() && github.event_name == 'workflow_dispatch'
2926
id: extract_branch
30-
run: echo ::set-output name=value::${GITHUB_REF:11}
27+
run: echo "value=${GITHUB_REF:11}" >> $GITHUB_OUTPUT
3128
- name: Asset Path
3229
if: success() && github.event_name == 'workflow_dispatch'
3330
id: asset_path

0 commit comments

Comments
 (0)