Files
owof-announcements/.gitea/workflows/cicd.yaml
T
redglow 742132fbb0
Build and Deploy / Build (push) Successful in 1m15s
ci: yarn install
2026-06-22 08:34:40 +02:00

20 lines
406 B
YAML

name: Build and Deploy
run-name: Build And Deploy (by ${{ gitea.actor }}) 🚀
on:
workflow_dispatch:
push:
branches:
- main
jobs:
checkout:
name: Build
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Install yarn
shell: bash
run: npm i yarn -g
- name: Yarn install (dev)
shell: bash
run: yarn install