diff options
| author | YongDo-Hyun <froster12@naver.com> | 2025-11-16 15:55:55 +0300 |
|---|---|---|
| committer | YongDo-Hyun <froster12@naver.com> | 2025-11-16 15:55:55 +0300 |
| commit | f6a8864f96fc72b98d100aade1e1a1e5cb219ba5 (patch) | |
| tree | 288c9cb5ede8b1a5c85de4a9095ff4fe1954f9c7 | |
| parent | 897a5cfa393762d719ddbb12468c923a88f505e7 (diff) | |
| download | Meta-Launcher-f6a8864f96fc72b98d100aade1e1a1e5cb219ba5.tar.gz Meta-Launcher-f6a8864f96fc72b98d100aade1e1a1e5cb219ba5.zip | |
4. komit
| -rw-r--r-- | .github/workflows/build.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ad86b1187..c07ca6ef2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,15 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Move directory (except _site and .github) + - name: Prepare _site run: | mkdir _site - shopt -s extglob - mv !( _site|.github ) _site/ - cp .github/CNAME _site/ + for item in *; do + if [ "$item" != "_site" ] && [ "$item" != ".github" ]; then + mv "$item" _site/ + fi + done + cp .github/CNAME _site/CNAME - name: Deploy uses: peaceiris/actions-gh-pages@v4 |
