diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 28e9ce016b9..ec1c9b69fee 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -218,6 +218,7 @@ jobs: echo "Replacing release number markers with actual release number" cd ${LATEST} if [[ "${LATEST}" == "nightly" ]]; then + egrep -lRZ --exclude=CONTRIBUTING.md . | xargs -0 -l sed -i -e "s/replace-janssen-version-stable/0.0.0-nightly/g" egrep -lRZ --exclude=CONTRIBUTING.md . | xargs -0 -l sed -i -e "s/replace-janssen-version/0.0.0-nightly/g" egrep -lRZ --exclude=CONTRIBUTING.md . | xargs -0 -l sed -i -e "s/v0.0.0-nightly/nightly/g" else diff --git a/docs/janssen-server/install/vm-install/rhel.md b/docs/janssen-server/install/vm-install/rhel.md index 730d2c26989..ae4e1a05854 100644 --- a/docs/janssen-server/install/vm-install/rhel.md +++ b/docs/janssen-server/install/vm-install/rhel.md @@ -41,7 +41,7 @@ sudo rpm -import automation-jans-public-gpg.asc [Releases](https://github.com/JanssenProject/jans/releases) ``` -wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version.el8.x86_64.rpm -P ~/ +wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version-stable.el8.x86_64.rpm -P ~/ ``` - Verify integrity of the downloaded package using published `sha256sum`. @@ -49,25 +49,25 @@ wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-v Download `sha256sum` file for the package ```shell - wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version.el8.x86_64.rpm.sha256sum -P ~/ + wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version-stable.el8.x86_64.rpm.sha256sum -P ~/ ``` Check the hash if it is matching. ```shell - sha256sum -c jans-replace-janssen-version-el8.x86_64.rpm.sha256sum + sha256sum -c jans-replace-janssen-version-stable-el8.x86_64.rpm.sha256sum ``` Output similar to below should confirm the integrity of the downloaded package. ```text - jans-replace-janssen-version-el8.x86_64.rpm: OK + jans-replace-janssen-version-stable-el8.x86_64.rpm: OK ``` - Install the package ``` -sudo yum install ~/jans-replace-janssen-version-el8.x86_64.rpm +sudo yum install ~/jans-replace-janssen-version-stable-el8.x86_64.rpm ``` ## Run the setup script diff --git a/docs/janssen-server/install/vm-install/suse.md b/docs/janssen-server/install/vm-install/suse.md index 4f08242ea54..6857f9b32be 100644 --- a/docs/janssen-server/install/vm-install/suse.md +++ b/docs/janssen-server/install/vm-install/suse.md @@ -53,7 +53,7 @@ sudo rpm -import automation-jans-public-gpg.asc [Releases](https://github.com/JanssenProject/jans/releases) ```shell -wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version.suse15.x86_64.rpm +wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version-stable.suse15.x86_64.rpm ``` - Verify integrity of the downloaded package using published `sha256sum`. @@ -61,14 +61,14 @@ wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-v Download `sha256sum` file for the package ```shell -wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version.suse15.x86_64.rpm.sha256sum +wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans-replace-janssen-version-stable.suse15.x86_64.rpm.sha256sum ``` Check the hash if it is matching. You may need to change your working directory to where both the rpm and sha256sum file are located. ```shell -sha256sum -c jans-replace-janssen-version.suse15.x86_64.rpm.sha256sum +sha256sum -c jans-replace-janssen-version-stable.suse15.x86_64.rpm.sha256sum ``` Output similar to below should confirm the integrity of the downloaded package. @@ -80,7 +80,7 @@ Output similar to below should confirm the integrity of the downloaded package. - Install the package ``` -sudo zypper install ~/jans-replace-janssen-version.suse15.x86_64.rpm +sudo zypper install ~/jans-replace-janssen-version-stable.suse15.x86_64.rpm ``` ## Run the setup script diff --git a/docs/janssen-server/install/vm-install/ubuntu.md b/docs/janssen-server/install/vm-install/ubuntu.md index 1db461aa491..91d02b7de80 100644 --- a/docs/janssen-server/install/vm-install/ubuntu.md +++ b/docs/janssen-server/install/vm-install/ubuntu.md @@ -38,7 +38,7 @@ sudo gpg --import automation-jans-public-gpg.asc; [Releases](https://github.com/JanssenProject/jans/releases) ``` -wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version.ubuntu22.04_amd64.deb -P /tmp +wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version-stable.ubuntu22.04_amd64.deb -P /tmp ``` - Verify integrity of the downloaded package by verifying published `sha256sum`. @@ -46,26 +46,26 @@ wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-v Download `sha256sum` file for the package ```shell - wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version.ubuntu22.04_amd64.deb.sha256sum -P /tmp + wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version-stable.ubuntu22.04_amd64.deb.sha256sum -P /tmp ``` Check the hash if it is matching. ```shell cd /tmp - sha256sum -c jans_replace-janssen-version.ubuntu22.04_amd64.deb.sha256sum + sha256sum -c jans_replace-janssen-version-stable.ubuntu22.04_amd64.deb.sha256sum ``` Output similar to below should confirm the integrity of the downloaded package. ```text - jans_replace-janssen-version.ubuntu22.04_amd64.deb.sha256sum: OK + jans_replace-janssen-version-stable.ubuntu22.04_amd64.deb.sha256sum: OK ``` - Install the package ``` -sudo apt install ./jans_replace-janssen-version.ubuntu22.04_amd64.deb +sudo apt install ./jans_replace-janssen-version-stable.ubuntu22.04_amd64.deb ``` ### Ubuntu 20.04 @@ -74,7 +74,7 @@ sudo apt install ./jans_replace-janssen-version.ubuntu22.04_amd64.deb [Releases](https://github.com/JanssenProject/jans/releases) ``` -wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version.ubuntu20.04_amd64.deb -P /tmp +wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version-stable.ubuntu20.04_amd64.deb -P /tmp ``` - Verify integrity of the downloaded package by verifying published `sha256sum`. @@ -82,26 +82,26 @@ wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-v Download `sha256sum` file for the package ```shell - wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version.ubuntu20.04_amd64.deb.sha256sum -P /tmp + wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version-stable.ubuntu20.04_amd64.deb.sha256sum -P /tmp ``` Check the hash if it is matching. ```shell cd /tmp - sha256sum -c jans_replace-janssen-version.ubuntu20.04_amd64.deb.sha256sum + sha256sum -c jans_replace-janssen-version-stable.ubuntu20.04_amd64.deb.sha256sum ``` Output similar to below should confirm the integrity of the downloaded package. ```text - jans_replace-janssen-version.ubuntu20.04_amd64.deb.sha256sum: OK + jans_replace-janssen-version-stable.ubuntu20.04_amd64.deb.sha256sum: OK ``` - Install the package ``` -sudo apt install ./jans_replace-janssen-version.ubuntu20.04_amd64.deb +sudo apt install ./jans_replace-janssen-version-stable.ubuntu20.04_amd64.deb ``` ## Run the setup script