Skip to content

Commit

Permalink
Update README.md with released version (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy authored Jun 22, 2021
1 parent c5e93e4 commit 262ae16
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
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

0 comments on commit 262ae16

Please sign in to comment.