From 1408b86122ebbb9d7ab50437b4a9257942ac09ca Mon Sep 17 00:00:00 2001 From: "Kyle J. Davis" Date: Wed, 17 Apr 2024 08:54:57 -0700 Subject: [PATCH 1/3] Adds binary artifacts to 7.2.5 release Signed-off-by: Kyle J. Davis --- _includes/release.html | 5 +++-- _releases/v7-2-5.markdown | 20 +++++++++----------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/_includes/release.html b/_includes/release.html index 1960a8d..66ef2ef 100644 --- a/_includes/release.html +++ b/_includes/release.html @@ -1,4 +1,4 @@ -Release Date: {{include.content.date | date: "%b %d, %Y"}}
+Release Date: {{include.content.date | date: " %b %d, %Y"}}
GitHub Release: {{include.content.tag}}

{% for registry in include.content.container_registry %} @@ -27,7 +27,8 @@

{{package_manager.name}}:

{% endif %} {% endfor %} {% endif %} - +
+

Binary Artifacts

{% for artifact in include.content.artifacts %} {% for arch in artifact.arch %} {% capture fname %}{{include.content.artifact_source}}{{include.content.artifact_fname}}-{{include.content.tag}}-{{artifact.distro}}-{{arch}}.tar.gz{% endcapture %} diff --git a/_releases/v7-2-5.markdown b/_releases/v7-2-5.markdown index 5dad48d..5026b60 100644 --- a/_releases/v7-2-5.markdown +++ b/_releases/v7-2-5.markdown @@ -22,15 +22,13 @@ packages: - name: EPEL id: 'valkey' -# artifacts: -# - distro: bionic -# arch: -# - arm64 -# - x86_64 -# - distro: focal -# arch: -# - arm64 -# - x86_64 - - +artifacts: + - distro: bionic + arch: + - arm64 + - x86_64 + - distro: focal + arch: + - arm64 + - x86_64 --- From bd9703e507da6e93b793c9ef8fc0b8b685914ef6 Mon Sep 17 00:00:00 2001 From: "Kyle J. Davis" Date: Wed, 17 Apr 2024 08:55:57 -0700 Subject: [PATCH 2/3] fixes spacing issue in datae format Signed-off-by: Kyle J. Davis --- _includes/release.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/release.html b/_includes/release.html index 66ef2ef..86f8cf9 100644 --- a/_includes/release.html +++ b/_includes/release.html @@ -1,4 +1,4 @@ -Release Date: {{include.content.date | date: " %b %d, %Y"}}
+Release Date: {{include.content.date | date: "%b %d, %Y"}}
GitHub Release: {{include.content.tag}}

{% for registry in include.content.container_registry %} From 2baff470c5847e800a595dcbfb37ceb20f66cbf6 Mon Sep 17 00:00:00 2001 From: "Kyle J. Davis" Date: Wed, 17 Apr 2024 10:12:10 -0700 Subject: [PATCH 3/3] updates readme to remove out-of-date info Signed-off-by: Kyle J. Davis --- README.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fbdf7c2..3d4acf4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Valkey.io website -This repo contains the source for the valkey.io website. The temporary staging website can be accessed using https://d18m7x5q574jh8.cloudfront.net. +This repo contains the source for the valkey.io website (build scripts, template, blog posts, stylesheets, etc.). +The build integrates content from [`valkey-io/valkey-doc`](https://github.com/valkey-io/valkey-doc) and the commands definitions from [`valkey-io/valkey`](https://github.com/valkey-io/valkey-doc) via [Git submodules](https://github.blog/2016-02-01-working-with-submodules/). ## Contributing @@ -10,13 +11,12 @@ We welcome contributions! Please see our [CONTRIBUTING](CONTRIBUTING.md) page to If you discover potential security issues, see the reporting instructions on our [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) page for more information. -## License -This project is licensed under the BSD-3-Clause License. - ## Build Locally +This site is built using Jekyll 4.3.2 with Ruby 3.3.0. Other versions may work, but YMMV. + 1. Go to the root of the repo -2. Install [Ruby](https://www.ruby-lang.org/en/) and [RVM](https://rvm.io/) +2. Install [Ruby](https://www.ruby-lang.org/en/) and [RVM](https://rvm.io/) (or some other Ruby version switcher, e.g. [chruby](https://github.com/postmodern/chruby)) 3. Install [Jekyll](https://jekyllrb.com/) 4. Install dependencies: `bundle install` 5. Build: `bundle exec jekyll serve` for the local server, `bundle exec jekyll build` for one off builds. Either way, the HTML of the site is generated to `/_site` @@ -26,4 +26,8 @@ This project is licensed under the BSD-3-Clause License. 1. `docker buildx build -t valkey.io .` 1. `docker run --volume="$PWD:/srv:Z" --workdir=/srv -p 3000:4000 valkey.io:latest` -1. Open browser to `http://localhost:3000/` \ No newline at end of file +1. Open browser to `http://localhost:3000/` + +## License + +This project is licensed under the BSD-3-Clause License.