From 5cd2a8a91aaff81ce0c82c4514186998a04c933f Mon Sep 17 00:00:00 2001 From: Shimada Takayuki Date: Tue, 26 Aug 2025 14:26:18 +0900 Subject: [PATCH] Delete .github/workflows/deploy-to-gh-pages.yml --- .github/workflows/deploy-to-gh-pages.yml | 48 ------------------------ 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/deploy-to-gh-pages.yml diff --git a/.github/workflows/deploy-to-gh-pages.yml b/.github/workflows/deploy-to-gh-pages.yml deleted file mode 100644 index 247c087..0000000 --- a/.github/workflows/deploy-to-gh-pages.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - permissions: - contents: read - pages: write - id-token: write - steps: - - name: Check out code - uses: actions/checkout@v4 - - - name: Set up Node.js v22 - uses: actions/setup-node@v4 - with: - node-version: '22' - - - name: Install dependencies - run: npm install - - - name: Build Storybook - run: npm run storybook:build - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: ./storybook-static - - deploy: - needs: build - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - permissions: - contents: read - pages: write - id-token: write - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4