fix: remove unneeded imagemagick install

This commit is contained in:
Daylin Morgan 2022-08-12 18:09:37 -05:00
parent bbdbda346a
commit 97f9035f6c
2 changed files with 2 additions and 3 deletions

View File

@ -6,9 +6,6 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install System Dependencies
run: sudo apt-get update && sudo apt-get install imagemagick
- name: Setup PDM
uses: pdm-project/setup-pdm@v2

View File

@ -8,8 +8,10 @@ REV := $(shell date +'%Y.%m.%d-' )$(shell git describe --always --dirty | sed s'
.PHONY: all
all:
@echo "==> Generating SVGs <=="
@mkdir -p docs/svg
@$(MAKE) svgs
@echo "==> Generating PNGs <=="
@mkdir -p docs/png
@$(MAKE) pngs
.PHONY: pngs