add build and publish ci
This commit is contained in:
parent
8cd00d9106
commit
7dc500e901
2 changed files with 18 additions and 0 deletions
5
.woodpecker/.build.yml
Normal file
5
.woodpecker/.build.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
steps:
|
||||||
|
lint:
|
||||||
|
image: denoland/deno:1.39.1
|
||||||
|
commands:
|
||||||
|
- deno task build
|
13
.woodpecker/.publish.yml
Normal file
13
.woodpecker/.publish.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
when:
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
lint:
|
||||||
|
image: denoland/deno:1.39.1
|
||||||
|
commands:
|
||||||
|
- deno task publish
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- lint
|
||||||
|
- build
|
||||||
|
- test
|
Loading…
Reference in a new issue