fix(deps): update all minor dependency bump (#387) #395
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| # fetch whole history (needed for blog article creation time to work correctly) | |
| fetch-depth: 0 | |
| - uses: pnpm/[email protected] | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: 'pnpm' | |
| node-version-file: '.nvmrc' | |
| - run: pnpm i | |
| - name: Build 🔧 | |
| run: pnpm build | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@releases/v3 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BRANCH: master | |
| FOLDER: public | |
| - name: on deployment success | |
| if: env.deployment_status == 'success' | |
| run: echo "Deployment success" | |