Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
4dd938b14b | |||
a6ddcbad86
|
|||
437af0b560
|
|||
48b236b533 | |||
7e0794315b
|
|||
710dfb8fd4 | |||
552c33e89b
|
12
CHANGELOG.md
12
CHANGELOG.md
@@ -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
|
||||
|
@@ -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
2
scripts/convert-md-tree.sh
Normal file → Executable 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
|
||||
|
Reference in New Issue
Block a user