test
Some checks failed
Build and Deploy / build (push) Failing after 6s

This commit is contained in:
dealjus 2025-04-29 07:21:18 -07:00
parent b027c86440
commit 8f6bed5076

View File

@ -18,22 +18,25 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22' # You can also use 18, 16, etc.
cache: 'pnpm'
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8 # You can change to your preferred pnpm version
- name: Install Dependencies
- name: Install dependencies
run: pnpm install
- name: Build Astro Site
- name: Build Astro site
run: pnpm run build
- name: Deploy to Server
run: rsync -avzP ./dist/ root@${{ secrets.SERVER_IP }}:/var/www/justin.deal/
- name: Deploy to server
run: rsync -avzP ./dist/ root@${{ secrets.SERVER_IP }}:/var/www/justin.deal/