summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorYongDo-Hyun <froster12@naver.com>2025-11-16 15:55:01 +0300
committerYongDo-Hyun <froster12@naver.com>2025-11-16 15:55:01 +0300
commit897a5cfa393762d719ddbb12468c923a88f505e7 (patch)
tree942b972ddada2ac4e6d33fd0de97b4b8f17cebec /.github
parent96206f1aaf5b2206038911c5e60e414f7f6b964a (diff)
downloadMeta-Launcher-897a5cfa393762d719ddbb12468c923a88f505e7.tar.gz
Meta-Launcher-897a5cfa393762d719ddbb12468c923a88f505e7.zip
3. komit
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 182ee6932..ad86b1187 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,12 +12,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Move directory
+ - name: Move directory (except _site and .github)
run: |
- to_move=$(echo *)
- mkdir -p _site/
- mv $to_move _site/
- cp .github/CNAME _site/CNAME
+ mkdir _site
+ shopt -s extglob
+ mv !( _site|.github ) _site/
+ cp .github/CNAME _site/
- name: Deploy
uses: peaceiris/actions-gh-pages@v4