Files
thiessen.io/.gitea/workflows/workflow.yaml
Dennis Thiessen ff37140ed4
Some checks failed
My Gatsby Deployment pipeline / build (push) Failing after 2m57s
fixed branch name
2025-03-15 21:20:10 +01:00

27 lines
530 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: 14
- name: Abhängigkeiten installieren
run: |
npm install
- name: Gatsby Build
run: |
npm run build