Skip to content

Commit 6132656

Browse files
authored
gradle_snapshot.yml run build -> prerelease sequentially (#8062)
* gradle_snapshot.yml run build -> prerelease sequentially * Update gradle_release.yml build -> release sequentially
1 parent 0892c6f commit 6132656

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/gradle_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ permissions:
1515

1616
jobs:
1717
build:
18-
1918
runs-on: ubuntu-latest
2019
env:
2120
CI_BUILD_NUMBER: ${{ github.run_number }}
@@ -43,6 +42,7 @@ jobs:
4342
- name: Upload to Codecov
4443
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
4544
release:
45+
needs: build
4646
runs-on: ubuntu-latest
4747
env:
4848
CI_BUILD_NUMBER: ${{ github.run_number }}

.github/workflows/gradle_snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ permissions:
1212

1313
jobs:
1414
build:
15-
1615
runs-on: ubuntu-latest
1716
if: github.repository == 'ReactiveX/RxJava'
1817
env:
@@ -38,6 +37,7 @@ jobs:
3837
- name: Build RxJava
3938
run: ./gradlew build --stacktrace --no-daemon
4039
prerelease:
40+
needs: build
4141
runs-on: ubuntu-latest
4242
permissions:
4343
contents: write

0 commit comments

Comments
 (0)