diff --git a/.github/workflows/deloy-web.yml b/.github/workflows/deloy-web.yml index a5df183..4b7acc1 100644 --- a/.github/workflows/deloy-web.yml +++ b/.github/workflows/deloy-web.yml @@ -2,24 +2,22 @@ name: Build and Deploy to GitHub Pages on: push: branches: - - main - - deploy-web + - main + - deploy-web jobs: build: runs-on: ubuntu-latest steps: - - name: Checkout repository - uses: actions/checkout@v3 - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: '16' - - name: Install dependencies - run: npm install - - name: Build the project - run: npm run build - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./dist + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: lts/* + - name: Install dependencies + run: npm ci + - name: Build + run: npm run build + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./dist diff --git a/public/privacy-policy.html b/public/privacy-policy/index.html similarity index 100% rename from public/privacy-policy.html rename to public/privacy-policy/index.html