fix: switch back to inkscape for transparent pngs

This commit is contained in:
Daylin Morgan 2022-08-13 12:50:39 -05:00
parent 575a426906
commit 16fa54453c
2 changed files with 6 additions and 3 deletions

View File

@ -23,6 +23,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get Inkscape
run: sudo apt-get update && sudo apt-get install -y inkscape
- name: Setup PDM
uses: pdm-project/setup-pdm@v2

View File

@ -19,8 +19,8 @@ all:
## generate all of the logo pngs
pngs: $(PNGS)
./docs/png/%.png: ./docs/svg/%.svg
convert $< -scale 1024 $@
docs/png/%.png: docs/svg/%.svg
@inkscape --export-filename=$@ $<
.PHONY: logos
## generate all of the logo svgs
@ -61,4 +61,4 @@ help: ## try `make help`
if (helpMessage) { helpCommand = substr($$1, 0, index($$1, ":")-1); \
helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
printf "\033[36m%-9s\033[0m - %s\n", \
helpCommand, helpMessage;}} { lastLine = $$0 }' $(MAKEFILE_LIST)
helpCommand, helpMessage;}} { lastLine = $$0 }' $(MAKEFILE_LIST)