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

Update README.md with released version #16

Merged
merged 2 commits into from
Jun 22, 2021
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
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ jobs:
- name: Bump to release version
run: echo "${RELEASE_VERSION}" > version.txt

- name: Update README.md
run: |
cp README.md README.md.bak
cat README.md.bak | \
sed "s/<version>.*<\/version>/<version>${RELEASE_VERSION}<\/version>/" | \
sed "s/implementation(\"org.projectnessie.cel:cel-tools:.*\")/implementation(\"org.projectnessie.cel:cel-tools:${RELEASE_VERSION}\")/" > README.md
rm README.md.bak

- name: Record ${{ github.event.inputs.releaseVersion }} release in git
run: |
git commit -a -m "[release] v${RELEASE_VERSION}"
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ The CEL specification can be found [here](https://github.com/google/cel-spec).

## Getting started

CEL-Java is not yet deployed to Maven Central, so you have to build it locally (see below).

The easiest way to get started is to add a dependency to your Maven project
```xml
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Security Policy

The project is in a very early stage. Artifacts are not yet published to Maven Central or the like.
The project is in a very early stage.

## Supported Versions

Expand Down