Files
thiessen.io/.gitea/workflows/workflow.yaml
Dennis Thiessen b8affa0dc5
Some checks failed
My Gatsby Deployment pipeline / build (push) Failing after 1m53s
updated workflow
2025-03-15 22:47:13 +01:00

25 lines
501 B
YAML

name: My Gatsby Deployment pipeline
run-name: ${{ gitea.actor }} is deploying this page to production.
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Repository auschecken
uses: actions/checkout@v3
- name: Node.js einrichten
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: npm install
- name: Build Gatsby Site
run: npm build