Custom pipeline not using the Astro action
Some checks failed
Build and Deploy to Web Server / deploy (push) Has been cancelled

This commit is contained in:
2025-08-11 17:14:53 +09:30
parent 9537648437
commit 02a2d96ce5

View File

@@ -14,8 +14,22 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install, build, and upload your site - name: Setup Node
uses: withastro/action@v4 uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: "./package-lock.json"
- name: Install
shell: "bash"
working-directory: .
run: npm install
- name: Build
shell: "bash"
working-directory: .
run: npm run build
- name: Set up SSH - name: Set up SSH
run: | run: |