Skip to content

Commit 28b74cb

Browse files
Docs: fix build filter, update push branch (#745)
1 parent 945bcc3 commit 28b74cb

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
- '.github/workflows/docs.yml'
1919

2020
env:
21-
FRONTEND_BRANCH: actual-docs
21+
FRONTEND_BRANCH: master
2222
GH_TOKEN: ${{ secrets.API_TOKEN_EXT }}
2323

2424
jobs:
@@ -59,6 +59,7 @@ jobs:
5959
run: pdm run docs_build
6060

6161
- name: Commit and push frontend
62+
if: github.ref == 'refs/heads/next'
6263
run: |
6364
cd ../interface
6465
git config --local user.email "[email protected]"

docs/1.getting-started/2.core-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: "Before proceeding to development, let's take a look at basic DipDu
44
---
55

66
# Core concepts
7-
7+
88
Before proceeding to development, let's take a look at basic DipDup concepts. The main terms are highlighted in _italics_ and will be discussed in detail in the following sections.
99

1010
## Big picture

scripts/docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ def on_modified(self, event: FileSystemEvent) -> None:
6161
return
6262

6363
# FIXME: front dies otherwise
64-
# if not (src_file.name[0] == '_' or src_file.name[0].isdigit()):
65-
# return
64+
if not (src_file.name[0] == '_' or src_file.name[0].isdigit()):
65+
return
6666

6767
if event.event_type == EVENT_TYPE_DELETED:
6868
dst_file = (self._destination / src_file.relative_to(self._source)).resolve()

0 commit comments

Comments
 (0)