Skip to content

Commit 3b69391

Browse files
committed
Update resolve-version.yml
1 parent 0ad28f3 commit 3b69391

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ name: Release
22

33
on:
44
push:
5-
paths-ignore:
6-
- 'website/**'
7-
- '**/*.md'
5+
paths:
6+
- '**/src/**'
87
branches:
98
- master
109
workflow_dispatch:
@@ -101,6 +100,7 @@ jobs:
101100
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
102101
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
103102
strategy:
103+
fail-fast: false
104104
matrix:
105105
repository:
106106
- name: Github Packages

.github/workflows/resolve-version.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
version:
1212
value: ${{ jobs.resolve.outputs.version }}
1313
snapshot:
14-
value: ${{ jobs.resolve.outputs.version }}
14+
value: ${{ jobs.resolve.outputs.snapshot }}
1515

1616
concurrency:
1717
cancel-in-progress: true
@@ -66,3 +66,4 @@ jobs:
6666
commit-message: '[ci skip] New SNAPSHOT - ${{ env.SNAPSHOT_VERSION }}'
6767
branch: ci/version/${{ env.SNAPSHOT_VERSION }}
6868
delete-branch: true
69+
base: master

0 commit comments

Comments
 (0)