fix: cleanup some weirdness #28
This file contains 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
name: Build derivative logos | |
on: | |
push: | |
branches: ["logos"] | |
pull_request: | |
branches: ["logos"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: registry.fedoraproject.org/fedora-minimal:40 | |
steps: | |
- name: Install dependencies | |
run: dnf5 install -y ImageMagick just tar inkscape scour | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Build derivative logos | |
run: just build | |
- uses: actions/upload-artifact@v4 | |
name: Upload built logos | |
with: | |
name: derived | |
path: out/ |