Skip to content

Commit

Permalink
Fixed changelog rendering.
Browse files Browse the repository at this point in the history
  • Loading branch information
svetlyak40wt committed Feb 6, 2025
1 parent 04d36d1 commit c3b196d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion 40ants-ci.asd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"40ants-ci/jobs/linter"
"40ants-ci/jobs/critic"
"40ants-ci/jobs/run-tests"
"40ants-ci/jobs/autotag")
"40ants-ci/jobs/autotag"
"40ants-ci/workflow")
:description "A tool simplify continuous deployment for Common Lisp projects."
:homepage "https://40ants.com/ci/"
:source-control (:git "https://github.com/40ants/ci")
Expand Down
9 changes: 6 additions & 3 deletions docs/changelog.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@

(defchangelog (:ignore-words ("40ANTS-DOC"
"ASDF"
"CI"
"secrets.DEPLOY_TRIGGER_TOKEN"
"DEPLOY_TRIGGER_TOKEN"
"secrets.GITHUB_TOKEN"
"GITHUB_TOKEN"
"OSX")
:external-docs ("https://40ants.com/40ants-asdf-system/"))
Expand Down Expand Up @@ -56,8 +59,8 @@ step. For this case an argument DYNAMIC-SPACE-SIZE can be given:
New
===
* Now you can specify ENV argument to 40ANTS-CI:DEFWORKFLOW and any job. This should be an alist where keys are strings and values are evaluated during GitHub workflow generation phase. Read more in 40ANTS-CI-DOCS/INDEX::@ENV section.
* 40ANTS-CI/JOBS/AUTOTAG:AUTOTAG function now ignores TOKEN-PATTERN argument if ENV argument was given and has GITHUB_TOKEN value for whole job.
* Now you can specify ENV argument to 40ANTS-CI/WORKFLOW:DEFWORKFLOW and any job. This should be an alist where keys are strings and values are evaluated during GitHub workflow generation phase. Read more in 40ANTS-CI-DOCS/INDEX::@ENV section.
* Also, 40ANTS-CI/JOBS/AUTOTAG:AUTOTAG function now ignores TOKEN-PATTERN argument if ENV argument was given and has `GITHUB_TOKEN` value for whole job.
Backward incompatible changes
=============================
Expand Down Expand Up @@ -140,7 +143,7 @@ Class 40ANTS-CI/JOBS/CRITIC:CRITIC was fixed for case when there are multiple cr
renames to the IGNORE-CRITIQUES argument.")
(0.6.0 2022-02-21
"- New job type \"critic\" was added. It advices how to make you Lisp code better.
Learn more about this job type at 40ANTS-CI::@CRITIC section.")
Learn more about this job type at 40ANTS-CI-DOCS/INDEX::@CRITIC section.")
(0.5.0 2022-01-28
"- Move the actions/checkout action from v1 to v2.")
(0.4.0 2022-01-28
Expand Down
4 changes: 3 additions & 1 deletion docs/index.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#:docs-config)
(:import-from #:40ants-doc/autodoc
#:defautodoc)
(:import-from #:40ants-logging-docs/changelog
(:import-from #:40ants-ci-docs/changelog
#:@changelog)
(:export #:@index
#:@readme
Expand Down Expand Up @@ -624,6 +624,7 @@ these task you can provide custom steps using BEFORE-STEPS argument or AFTER-STE
Here is an example where we are installing system package libunaq1-dev before running the testsuite:
```lisp
(defparameter *required-steps*
(list (sh \"Install libunac\"
\"sudo apt-get install -y libunac1-dev\")))
Expand All @@ -634,6 +635,7 @@ Here is an example where we are installing system package libunaq1-dev before ru
:jobs ((run-tests
:steps-before *required-steps*
:asdf-system \"my-asdf-system\")))
```
")


Expand Down
1 change: 0 additions & 1 deletion src/jobs/linter.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
steps
steps-before
steps-after
permissions
;; Settings from base LISP-JOB class
roswell-version
asdf-version
Expand Down

0 comments on commit c3b196d

Please sign in to comment.