Skip to content

✨ 同時押しガイドを実装 (#21) #64

✨ 同時押しガイドを実装 (#21)

✨ 同時押しガイドを実装 (#21) #64

Workflow file for this run

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