Skip to content

Commit ecb7c4a

Browse files
committed
debug
1 parent e3fb2ef commit ecb7c4a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/update-app-events-data.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,23 @@ jobs:
3535
run: echo "DISCOURSE_CORE=./discourse" > .env
3636

3737
# - name: Extract App Events
38-
# run: ls ./scripts
39-
# run: node ./scripts/extract_app_events.mjs
38+
# run: node ./scripts/extract_app_events.mjs
4039

4140
- name: Debug file existence
4241
run: |
4342
echo "Listing scripts directory:"
4443
ls -la ./scripts/
4544
echo "File existence check:"
46-
[ -f "./scripts/create_app_events_doc_markdown.mjs" ] && echo "File exists" || echo "File does not exist"
45+
[ -f "./scripts/extract_app_events.mjs" ] && echo "File exists" || echo "File does not exist"
4746
echo "File permissions:"
48-
stat ./scripts/create_app_events_doc_markdown.mjs
47+
stat ./scripts/extract_app_events.mjs
4948
echo "File content check (first few lines):"
50-
head -n 5 ./scripts/create_app_events_doc_markdown.mjs || echo "Could not read file"
49+
head -n 5 ./scripts/extract_app_events.mjs || echo "Could not read file"
5150
echo "Node.js version:"
5251
node --version
5352
54-
- name: Generate App Events Details Doc
55-
run: node ./scripts/create_app_events_doc_markdown.mjs
53+
# - name: Generate App Events Details Doc
54+
# run: node ./scripts/create_app_events_docs_markdown.mjs
5655

5756
- name: Create Pull Request
5857
uses: peter-evans/create-pull-request@v7

0 commit comments

Comments
 (0)