bluetooth-buzzer/.gitea/workflows/build.yaml
Dorian Zedler 0f8ad8b92f
Some checks failed
/ build (push) Failing after 3m35s
Chore: add actions
2024-01-20 10:41:37 +01:00

34 lines
662 B
YAML

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Build
run: |
npm i
npm run build
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: Deploy
uses: https://itsblue.dev/actions/codeberg-pages-deploy@v1
if: github.ref == 'refs/heads/main'
with:
folder: ./build