7 Commits

Author SHA1 Message Date
4dd938b14b chore(changelog): update changelog for v0.1.3
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 11s
2025-07-09 19:44:41 +00:00
a6ddcbad86 chore(version): Updates version to 0.1.3
All checks were successful
Auto Changelog & Release / release (push) Successful in 15s
2025-07-09 21:44:24 +02:00
437af0b560 Refactor: Streamlines branch content replacement
- Removes `shopt -s dotglob` as it's no longer needed.
- Simplifies the branch content replacement process.
2025-07-09 21:44:24 +02:00
48b236b533 chore(changelog): update changelog for v0.1.2
All checks were successful
Create Major Version Tag / update-major-tag (release) Successful in 12s
2025-07-09 19:41:57 +00:00
7e0794315b chore(version): Updates version to 0.1.2
All checks were successful
Auto Changelog & Release / release (push) Successful in 15s
2025-07-09 21:41:42 +02:00
710dfb8fd4 chore(changelog): update unreleased changelog 2025-07-09 19:41:01 +00:00
552c33e89b chore: Allow script to continue despite errors
All checks were successful
Auto Changelog & Release / release (push) Successful in 14s
- The `|| true` ensures the script continues even if the increment
  operation fails. This prevents the script from halting if
  `CONVERTED` is unset.
2025-07-09 21:40:44 +02:00
4 changed files with 14 additions and 3 deletions

View File

@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file.
## [0.1.3](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.1.2..v0.1.3) - 2025-07-09
### 💼 Other
- Streamlines branch content replacement - ([437af0b](https://git.0xmax42.io/actions/deb-changelog-action/commit/437af0b560a3d916b58cbd81669046676718d213))
## [0.1.2](https://git.0xmax42.io/actions/deb-changelog-action/compare/v0.1.1..v0.1.2) - 2025-07-09
### ⚙️ Miscellaneous Tasks
- Allow script to continue despite errors - ([552c33e](https://git.0xmax42.io/actions/deb-changelog-action/commit/552c33e89b9a7284461c7585487ccfe7793cce2c))
## [0.1.1] - 2025-07-09
### 🚀 Features

View File

@@ -1 +1 @@
0.1.1
0.1.3

View File

@@ -64,7 +64,6 @@ runs:
- name: Replace branch contents
shell: bash
run: |
shopt -s dotglob
rm -rf ./* || true
cp -r "$TMP_DIR"/. .
rm -rf "$TMP_DIR"

2
scripts/convert-md-tree.sh Normal file → Executable file
View File

@@ -89,7 +89,7 @@ while IFS= read -r -d '' FILE; do
pandoc $PANDOC_ARGS "$FILE" -s -o "$OUT_FILE"
echo "✅ Converted: $FILE -> $OUT_FILE"
fi
((CONVERTED++))
((CONVERTED++)) || true
done < <(find "$SRC" -type f -name '*.md' -print0)
if $DRY_RUN; then