Skip to content

Commit

Permalink
fix: 修正
Browse files Browse the repository at this point in the history
  • Loading branch information
taga3s committed Aug 7, 2023
1 parent 4f61676 commit fcbd5a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Deploy static content to Pages
on:
# デフォルトブランチを対象としたプッシュ時にで実行されます
push:
branches: ['main']
branches: ["develop"]

# Actions タブから手動でワークフローを実行できるようにします
workflow_dispatch:
Expand All @@ -17,7 +17,7 @@ permissions:

# 1 つの同時デプロイメントを可能にする
concurrency:
group: 'pages'
group: "pages"
cancel-in-progress: true

jobs:
Expand All @@ -34,7 +34,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build
Expand All @@ -45,7 +45,7 @@ jobs:
uses: actions/upload-pages-artifact@v1
with:
# dist リポジトリのアップロード
path: './dist'
path: "./dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from "vite";

export default defineConfig({
base: "/team-c",
base: "work-space",
});

0 comments on commit fcbd5a7

Please sign in to comment.