Skip to content

Commit 328cd6e

Browse files
committed
ci: Fix owner of files before checking out
Signed-off-by: Joas Schilling <[email protected]>
1 parent 7f14daf commit 328cd6e

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/generate_catalog_templates.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
pre-build-command: "pip install -r requirements.txt"
2828
build-command: "make gettext"
2929

30+
- name: Change file owner to correct user
31+
run: chown -R 1001:1001 user_manual/locale/source
32+
3033
- uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6
3134
id: cpr
3235
with:

user_manual/Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,6 @@ gettext:
169169
$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) locale/source
170170
@echo
171171
@echo "Build finished. The message catalogs are in ./locale/source."
172-
find locale/source -type d -exec chmod 775 {} \;
173-
find locale/source -type f -exec chmod 664 {} \;
174-
ls -la locale/source
175-
@echo
176-
@echo "Build finished. The message catalogs are in ./locale/source."
177172

178173
changes:
179174
$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes

0 commit comments

Comments
 (0)