From f6a8864f96fc72b98d100aade1e1a1e5cb219ba5 Mon Sep 17 00:00:00 2001 From: YongDo-Hyun Date: Sun, 16 Nov 2025 15:55:55 +0300 Subject: 4. komit --- .github/workflows/build.yml | 11 +++++++---- 1 file 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 -- cgit 0.0.5-2-1-g0f52