Skip to content

Commit e13f59d

Browse files
committed
Fix import-publications workflow: change content/publication/ to content/publications/ to match actual folder structure
1 parent 1675941 commit e13f59d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/import-publications.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ jobs:
6868
if: ${{ hashFiles('publications.bib') != '' }}
6969
run: |
7070
echo "🚀 Starting publication import..."
71-
academic import publications.bib content/publication/ --compact --verbose
71+
academic import publications.bib content/publications/ --compact --verbose
7272
echo "✅ Publication import completed successfully"
7373
7474
# Verify that files were created
75-
if [ -d "content/publication" ] && [ "$(ls -A content/publication/)" ]; then
76-
echo "📚 Publications imported: $(ls content/publication/ | wc -l) items"
75+
if [ -d "content/publications" ] && [ "$(ls -A content/publications/)" ]; then
76+
echo "📚 Publications imported: $(ls content/publications/ | wc -l) items"
7777
else
7878
echo "⚠️ No publications were imported"
7979
fi
@@ -88,14 +88,14 @@ jobs:
8888
body: |
8989
🔄 **Automated Publication Import**
9090
91-
This PR automatically imports the latest publications from `publications.bib` to `content/publication/`.
91+
This PR automatically imports the latest publications from `publications.bib` to `content/publications/`.
9292
9393
**Changes:**
9494
- 📚 Updated publication entries
9595
- 🏷️ Processed bibliographic data
9696
9797
---
98-
将最新的出版物从`publications.bib`导入到`content/publication/`。
98+
将最新的出版物从`publications.bib`导入到`content/publications/`。
9999
100100
📖 [View Documentation](https://github.com/GetRD/academic-file-converter)
101101
base: main

0 commit comments

Comments
 (0)