🎨 選曲シーンの各メニューのウィンドウにアニメーションを追加 (#22) #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
TZ: "Asia/Tokyo" | |
SERVER_URL: ${{ vars.SERVER_URL }} | |
CREDITS: ${{ vars.CREDITS }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Install Dependencies | |
run: bun install | |
- name: Fetch beatmap repository | |
run: bunx degit RICORA/ricora-beats-beatmap ./dist/assets/beatmaps | |
- name: Build | |
run: bun run build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
cname: beats.tus-ricora.com |