Skip to content

Commit

Permalink
Updating contributing for new release management (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrouand authored Mar 12, 2024
1 parent b9021b7 commit a3dee31
Show file tree
Hide file tree
Showing 29 changed files with 624 additions and 3,075 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-github-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

publish-to-github-maven-registry:
uses: ./.github/workflows/build-all-template.yml
if: ${{ contains(github.ref_name, 'RC') }}
if: ${{ github.ref_name =~ ^\d+\.\d+\.\d+\.\d+$ }}
with:
release: true
secrets:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ on:
push:
tags:
- '*.*.*'
- '*.*.*-RC'
- '*.*.*-RC*'
- '*.*.*.*'

jobs:
build:
Expand All @@ -22,7 +21,7 @@ jobs:
uses: ./.github/workflows/release-github-template.yml

release-to-OSSRH:
if: ${{ ! contains(github.ref_name, 'RC') }}
if: ${{ github.ref_name =~ ^\d+\.\d+\.\d+$) }}
needs: [ build ]
uses: ./.github/workflows/build-all-template.yml
with:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@
* chore(): Clean transitive dependencies from kotlin-dsl & server packaging jar name by @KarimGl in https://github.com/chutney-testing/chutney/pull/12

**[Full Changelog](https://github.com/chutney-testing/chutney/commits/2.7.1-RC)**

## Please check release note before 2.7.1 here :

- [chutney](https://github.com/chutney-testing/chutney-legacy/releases)
- [kotlin-dsl](https://github.com/chutney-testing/chutney-kotlin-dsl-legacy/releases)
- [documentation](https://github.com/chutney-testing/chutney-testing.github.io-legacy)
- [plugin](https://github.com/chutney-testing/chutney-idea-plugin-legacy/releases/)
Loading

0 comments on commit a3dee31

Please sign in to comment.