updated workflow
Some checks failed
My Gatsby Deployment pipeline / build (push) Failing after 38s

This commit is contained in:
2025-03-15 22:55:19 +01:00
parent b8affa0dc5
commit d65efae8d8
2 changed files with 39 additions and 13 deletions

View File

@@ -17,9 +17,35 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Cache node modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install
run: npm ci
- name: Build Gatsby Site
run: npm build
run: |
npm run build
env:
NODE_ENV: production
CI: true
- name: Check build output
run: |
if [ ! -d "public" ]; then
echo "Build failed - public directory not found"
exit 1
fi
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: gatsby-build
path: public/