mirror of
https://github.com/daylinmorgan/logo.git
synced 2024-12-21 22:10:45 -06:00
fix: remove unneeded imagemagick install
This commit is contained in:
parent
bbdbda346a
commit
97f9035f6c
2 changed files with 2 additions and 3 deletions
3
.github/workflows/build-publish.yml
vendored
3
.github/workflows/build-publish.yml
vendored
|
@ -6,9 +6,6 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install System Dependencies
|
|
||||||
run: sudo apt-get update && sudo apt-get install imagemagick
|
|
||||||
|
|
||||||
- name: Setup PDM
|
- name: Setup PDM
|
||||||
uses: pdm-project/setup-pdm@v2
|
uses: pdm-project/setup-pdm@v2
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -8,8 +8,10 @@ REV := $(shell date +'%Y.%m.%d-' )$(shell git describe --always --dirty | sed s'
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all:
|
all:
|
||||||
@echo "==> Generating SVGs <=="
|
@echo "==> Generating SVGs <=="
|
||||||
|
@mkdir -p docs/svg
|
||||||
@$(MAKE) svgs
|
@$(MAKE) svgs
|
||||||
@echo "==> Generating PNGs <=="
|
@echo "==> Generating PNGs <=="
|
||||||
|
@mkdir -p docs/png
|
||||||
@$(MAKE) pngs
|
@$(MAKE) pngs
|
||||||
|
|
||||||
.PHONY: pngs
|
.PHONY: pngs
|
||||||
|
|
Loading…
Reference in a new issue