diff options
-rw-r--r-- | .builds/alpine.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.builds/alpine.yml b/.builds/alpine.yml index 62f3983..3533b2d 100644 --- a/.builds/alpine.yml +++ b/.builds/alpine.yml @@ -1,17 +1,18 @@ -image: alpine/edge +image: alpine/3.18 packages: - go - vips-dev - sassc - - golangci-lint + - sqlite-dev + sources: - https://git.sr.ht/~gabrielgio/img + - https://github.com/valyala/quicktemplate.git tasks: - setup: | - go install github.com/valyala/quicktemplate/qtc@latest - # - lint: | - # cd img - # make lint + cd quicktemplate + go build -o bin/qtc ./qtc/main.go + sudo mv bin/qtc /usr/bin/ - build: | cd img make |