Skip to content

fix: macos icon

fix: macos icon #10

Workflow file for this run

name: test
env:
CARGO_TERM_COLOR: always
permissions:
contents: write
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Run
run: |
npm i ansi2 -g
cargo run | ansi2 > neofetch.svg
- name: Upload
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
path: ./*.svg