Skip to content

Commit

Permalink
✨ feat: デプロイコマンドを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
Kokecoco committed Sep 11, 2024
1 parent 8b354b5 commit cd06345
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 43 deletions.
57 changes: 29 additions & 28 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,38 @@
name: Deploy to GitHub Pages
name: Build and Deploy to gh-pages

on:
push:
branches:
- main # mainブランチにpushされたときにデプロイ
- main

jobs:
deploy:
build:
runs-on: ubuntu-latest

steps:
# リポジトリをチェックアウト
- name: Checkout repository
uses: actions/checkout@v3

# Node.jsをセットアップ
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16" # 必要に応じてNodeのバージョンを指定

# 依存関係のインストール
- name: Install dependencies
run: npm install

# ビルド
- name: Build project
run: npm run build # ビルドコマンドがある場合は実行

# GitHub Pagesにデプロイ
- name: Deploy to GitHub Pages
run: |
npm install -g gh-pages
gh-pages -d dist # distフォルダにビルドファイルが生成されている場合
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# リポジトリをクローンするステップ
- name: Checkout repository
uses: actions/checkout@v3

# Node.jsのセットアップ
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18' # プロジェクトのNode.jsバージョンを指定

# 依存パッケージのインストール
- name: Install dependencies
run: npm install

# TypeScriptのコンパイルとViteによるビルド
- name: Build project
run: npm run build

# ビルドされたファイルをgh-pagesにデプロイ
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist # ビルドされたファイルが出力されるdistフォルダを指定
destination_dir: . # ルートに配置する場合はこの設定

8 changes: 0 additions & 8 deletions README.md

This file was deleted.

9 changes: 2 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocknote/example-all-blocks",
"description": "AUTO-GENERATED FILE, DO NOT EDIT DIRECTLY",
"name": "KITs-memo",
"description": "KITsのメモ",
"private": true,
"version": "0.12.4",
"scripts": {
Expand Down Expand Up @@ -33,11 +33,6 @@
"gh-pages": "^6.1.1",
"vite": "^5.4.3"
},
"eslintConfig": {
"extends": [
"../../../.eslintrc.js"
]
},
"homepage": "https://kokecoco.github.io/KITs-memo/",
"eslintIgnore": [
"dist"
Expand Down

0 comments on commit cd06345

Please sign in to comment.