20 lines
406 B
YAML
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 |