1
0

add atmosphere

This commit is contained in:
2025-11-20 19:39:03 +09:00
parent 8dddebec16
commit cb720251e7
33 changed files with 750 additions and 13 deletions

View File

@@ -5,10 +5,6 @@ on:
branches:
- main
env:
GITEA_MAIL: ${{ secrets.GITEA_MAIL }}
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
jobs:
build-deploy:
runs-on: ubuntu-latest
@@ -16,26 +12,25 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
node-version: 25
ref: main
submodules: true
fetch-depth: 0
- run: |
yarn install
rm -rf dist/vrma
git clone https://${GITEA_TOKEN}@git.syui.ai/ai/vrma dist/vrma
rm -rf dist/vrma/.git
cd atmosphere/
npm i
- name: Build
env:
TZ: "Asia/Tokyo"
run: |
yarn build
cd atmosphere/
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
publish_dir: ./atmosphere/dist
user_name: 'ai[bot]'
user_email: '138105980+yui-syui-ai[bot]@users.noreply.github.com'