diff options
| author | YongDo-Hyun <97219311+YongDo-Hyun@users.noreply.github.com> | 2025-11-11 15:25:11 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-11 15:25:11 +0300 |
| commit | 781662f8329cbc313a9da7d276f6c3167dc083ef (patch) | |
| tree | 8ffcd36a3264c644e3a18abf150fb129c9c2ac47 /.github/workflows | |
| parent | 97cc5bdc1f5fa75ef8bbccadd544b821bc4dcf03 (diff) | |
| download | Meta-Launcher-781662f8329cbc313a9da7d276f6c3167dc083ef.tar.gz Meta-Launcher-781662f8329cbc313a9da7d276f6c3167dc083ef.zip | |
Rename build.yml to build.yml
Signed-off-by: YongDo-Hyun <97219311+YongDo-Hyun@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..160574a06 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build Pages by ydh + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Move directory + run: | + to_move=$(echo *) + mkdir -p _site/v1 + mv $to_move _site/v1 + cp .github/CNAME _site/CNAME + + - name: Deploy + uses: peaceiris/actions-gh-pages@v4 + with: + publish_dir: ./_site + github_token: ${{ secrets.GITHUB_TOKEN }} |
