diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 10f047c..fc8d213 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,7 +2,7 @@ name: site-deploy on: push: - branches: [main] # todo: remove later + branches: [web-docs] # todo: remove later workflow_dispatch: @@ -24,15 +24,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Setup Pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v5 - name: Install dependencies run: npm install - name: Build with VitePress