diff --git a/.gitignore b/.gitignore index e852607..774c41c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ vendor/ *.pdf _site/ _build_pdf/ +release.body diff --git a/_config.yml b/_config.yml index 57bf81d..b0bfe55 100644 --- a/_config.yml +++ b/_config.yml @@ -2,7 +2,7 @@ # SPDX-FileCopyrightText: 2022 The Foundation for Public Code title: Release Test -version: 0.0.7 +version: 0.0.8 remote_theme: publiccodenet/jekyll-theme diff --git a/changelog/changelog-0.0.8.md b/changelog/changelog-0.0.8.md new file mode 100644 index 0000000..6ad2026 --- /dev/null +++ b/changelog/changelog-0.0.8.md @@ -0,0 +1,11 @@ + + + +## Version 0.0.8 + +2020-12-13: add a pretty license page to the site + + * `script/link-change-latest.sh`: generates the release.body symlink + * `.github/workflows/release-on-tag.yml`: use link-change-latest.sh + * `_config.yml`: bump version 0.0.6 -> 0.0.7 + * `.gitignore`: ignore release.body diff --git a/script/link-change-latest.sh b/script/link-change-latest.sh new file mode 100755 index 0000000..64408be --- /dev/null +++ b/script/link-change-latest.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# SPDX-License-Identifier: CC0-1.0 +# SPDX-FileCopyrightText: 2021-2022 The Foundation for Public Code , https://standard.publiccode.net/AUTHORS + +echo "printing enviornment:" +echo +env +echo +echo + +set -x + +ln -sv changelog/$(ls -1 changelog | sort | tail -n1) \ + release.body