Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
PEZ committed Nov 4, 2024
1 parent 14e78c8 commit eb37c75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release VSIX
on:
push:
tags:
- 'v*.*.*'
- 'v*'

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions scripts/publish.clj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
new-text (string/replace-first
changelog-text
(release-pattern "Unreleased")
(format "[Unreleased]\n\n%s" new-header))]
(format "## [Unreleased]\n\n%s" new-header))]
new-text))

(defn throw-if-error [{:keys [exit out err] :as result}]
Expand Down Expand Up @@ -114,7 +114,7 @@
(spit changelog-filename updated-changelog-text)
(println "Would write to changelog: " changelog-filename (subs updated-changelog-text 0 200) "..."))
(commit-changelog changelog-filename
(str "Add changelog section for v" extension-version " [skip ci]"
(str "Add changelog section for v" extension-version ""
(when *command-line-args*
(str "\n\n" (first *command-line-args*))))
dry-run?)
Expand Down

0 comments on commit eb37c75

Please sign in to comment.