Compare commits

4 Commits

Author SHA1 Message Date
b59c939e3e Add acl
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-20 21:22:52 +01:00
3a30c7a6f4 Actually fix path
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-20 21:18:57 +01:00
bdab11b100 try fix path
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-20 21:16:30 +01:00
d3f6f0e946 update ci
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-20 21:13:40 +01:00
3 changed files with 3 additions and 37 deletions

View File

@@ -3,10 +3,6 @@ kind: pipeline
type: kubernetes type: kubernetes
name: build-clis name: build-clis
trigger:
branch:
- main
steps: steps:
- name: build - name: build
image: golang:1.17 image: golang:1.17
@@ -19,6 +15,7 @@ steps:
source: dist/* source: dist/*
target: /dist/ target: /dist/
strip_prefix: dist/ strip_prefix: dist/
acl: readonly
path_style: true path_style: true
endpoint: https://s3.blacknova.io endpoint: https://s3.blacknova.io
@@ -32,10 +29,6 @@ kind: pipeline
type: kubernetes type: kubernetes
name: build-wasm name: build-wasm
trigger:
branch:
- main
steps: steps:
- name: build - name: build
image: golang:1.17 image: golang:1.17
@@ -44,8 +37,6 @@ steps:
GOARCH: wasm GOARCH: wasm
commands: commands:
- make wasm - make wasm
# Grab the wasm shim from the docker image, otherwise there is a mismatch
- "cp /usr/local/go/misc/wasm/wasm_exec.js assets/wasm_exec.js"
- name: upload - name: upload
image: plugins/s3 image: plugins/s3
settings: settings:
@@ -53,6 +44,7 @@ steps:
source: assets/**/* source: assets/**/*
target: / target: /
strip_prefix: assets/ strip_prefix: assets/
acl: readonly
path_style: true path_style: true
endpoint: https://s3.blacknova.io endpoint: https://s3.blacknova.io

View File

@@ -1,20 +0,0 @@
# Covergen
Just generates some magic PDF invoice covers using straight up dark magic.
## Just be lazy
Go see it in action and download it from [https://s3.blacknova.io/covergen/index.html](https://s3.blacknova.io/covergen/index.html)
## Just build it
```
$ go build -o covergen ./cmd/covergen
```
## It has wasm!
```
$ make wasm
```

View File

@@ -89,11 +89,5 @@
<iframe id="front"></iframe> <iframe id="front"></iframe>
<iframe id="back"></iframe> <iframe id="back"></iframe>
</div> </div>
<div class="download-links">
Download the CLI:
<a href="./dist/covergen.linux-amd64">Linux amd64</a>
<a href="./dist/covergen.darwin-amd64">Darwin amd64</a>
</div>
</body> </body>
</html> </html>