parent
a9e521ff1a
commit
addd737a04
2 changed files with 18 additions and 0 deletions
6
.forgejo/workflows/demo.yaml
Normal file
6
.forgejo/workflows/demo.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: debian-latest
|
||||
steps:
|
||||
- run: node --version
|
12
.forgejo/workflows/deploy.yaml
Normal file
12
.forgejo/workflows/deploy.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: "deploy to prod"
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- prod
|
||||
build-and-deploy:
|
||||
runs-on: debian-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: ls -l
|
||||
- run: npm install
|
||||
- run: npm docs:build
|
Loading…
Reference in a new issue