Create Icons #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Simon Schneegans <[email protected]> | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Create Icons | |
on: workflow_dispatch | |
jobs: | |
create: | |
name: Create Icons | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
brew install imagemagick | |
brew install svgo | |
brew tap homebrew/cask | |
brew install --cask inkscape | |
ln -s /Applications/Inkscape.app/Contents/MacOS/inkscape /usr/local/bin/inkscape | |
- name: Create Icons | |
run: ./icons/create.sh | |
- name: Upload Icons | |
uses: actions/upload-artifact@v4 | |
with: | |
name: icons | |
path: icons/output |