Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update release templates and for 5.6.0 #4

Merged
merged 5 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
build-javadoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: 'apache/curator'
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '17'
distribution: zulu
java-version: '21'
- name: Build javadoc
run: mvn javadoc:aggregate
run: ./mvnw install javadoc:aggregate -DskipTests
- name: Upload javadoc
uses: actions/upload-artifact@v3
with:
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build-javadoc]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download javadoc
uses: actions/download-artifact@v3
with:
Expand All @@ -55,10 +55,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 19.x
cache: yarn
- run: corepack enable
- run: yarn install --frozen-lockfile
- run: yarn build
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm build
- uses: peaceiris/actions-gh-pages@v3
if: github.event_name != 'pull_request'
with:
Expand Down
1 change: 0 additions & 1 deletion .yarnrc.yml

This file was deleted.

4 changes: 2 additions & 2 deletions community/releasing-curator.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ The tag to be voted upon:
https://github.com/apache/curator/releases/tag/apache-curator-X.X.X

Curator's KEYS file containing PGP keys we use to sign the release:
https://www.apache.org/dist/curator/KEYS
https://downloads.apache.org/curator/KEYS

[ ] +1 approve
[ ] +0 no opinion
Expand Down Expand Up @@ -165,7 +165,7 @@ Hello,
The Apache Curator team is pleased to announce the release of version x.y.z. Apache Curator is a Java/JVM client library for Apache ZooKeeper[1], a distributed coordination service. Apache Curator includes a high-level API framework and utilities to make using Apache ZooKeeper much easier and more reliable. It also includes recipes for common use cases and extensions such as service discovery and a Java 8 asynchronous DSL. For more details, please visit the project website: https://curator.apache.org/

The download page for Apache Curator is here:
https://curator.apache.org/releases.html
https://curator.apache.org/download/

The binary artifacts for Curator are available from Maven Central and its mirrors.

Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,5 @@
},
"engines": {
"node": ">=16.14"
},
"packageManager": "[email protected]"
}
}
Loading