mirror of
https://github.com/daylinmorgan/logo.git
synced 2024-12-21 22:10:45 -06:00
fix: switch back to inkscape for transparent pngs
This commit is contained in:
parent
575a426906
commit
16fa54453c
2 changed files with 6 additions and 3 deletions
3
.github/workflows/build-publish.yml
vendored
3
.github/workflows/build-publish.yml
vendored
|
@ -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
|
||||
|
||||
|
|
4
Makefile
4
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue