This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8a297d
commit d7bd2ca
Showing
4 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ vendor/ | |
_site/ | ||
_build_pdf/ | ||
release.body |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# SPDX-FileCopyrightText: 2022 The Foundation for Public Code <[email protected]> | ||
|
||
title: Release Test | ||
version: 0.0.7 | ||
version: 0.0.8 | ||
|
||
remote_theme: publiccodenet/jekyll-theme | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- SPDX-License-Identifier: CC0-1.0 --> | ||
<!-- SPDX-FileCopyrightText: 2022 The Foundation for Public Code <[email protected]>, https://standard.publiccode.net/AUTHORS --> | ||
|
||
## 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
# SPDX-License-Identifier: CC0-1.0 | ||
# SPDX-FileCopyrightText: 2021-2022 The Foundation for Public Code <[email protected]>, 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 |