Skip to content

Commit 690eba6

Browse files
committed
Include web export workflow in git archive
Since commit bb0bef1 we have included the GitHub Actions workflow that exports the project for the web & publishes it with GitHub Pages as part of the zip file created by `git archive`, which is what is fetched when the project is downloaded via the Godot Asset Library. However in commit 80440de I split that workflow in two, without updating `.gitattributes` accordingly. As a result, the "Publish to GitHub Pages" workflow is present, but the "Build and Export Game" workflow is not; and the former (understandably) fails. Include it.
1 parent 2bbd129 commit 690eba6

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.gitattributes

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Normalize EOL for all files that Git considers text files.
22
* text=auto eol=lf
33

4-
# Exclude GitHub Actions-related files from published asset, except the GitHub
5-
# Pages workflow which learners may find useful to publish their modified game.
6-
/.github/** export-ignore
4+
# Exclude GitHub Actions-related files from published asset, except the web
5+
# export & GitHub Pages workflows which learners may find useful to publish
6+
# their modified game.
7+
/.github/** export-ignore
78
/.github/workflows !export-ignore
89
/.github/workflows/** export-ignore
10+
/.github/workflows/export.yml !export-ignore
911
/.github/workflows/github-pages.yml !export-ignore
1012
/asset-template.json.hb export-ignore
1113

0 commit comments

Comments
 (0)