🧹 cleanup

This commit is contained in:
KaizIqbal 2020-07-29 17:45:02 +05:30
parent 063fec21f6
commit 3ec30c245f
2 changed files with 15 additions and 86 deletions

View file

@ -1,85 +0,0 @@
on:
push:
paths-ignore:
- README.md
- LICENSE
branches: [master, dev]
pull_request:
paths-ignore:
- README.md
- LICENSE
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install build dependencies (apt)
run: |
sudo apt install libx11-dev libxcursor-dev libpng-dev
continue-on-error: false
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/setup-node@v1
with:
node-version: "12.x"
- run: yarn install
- run: yarn render
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Cache pip dependencies
uses: actions/cache@v2
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
continue-on-error: false
- name: Generating `macOS Big Sur` Cursor Theme
run: python build.py
- name: Uploading `bitmaps` artifact
uses: actions/upload-artifact@v2
with:
name: bitmaps
path: bitmaps/*
- name: Uploading `macOS Big Sur` X11 artifact
uses: actions/upload-artifact@v2
with:
name: macOS Big Sur
path: packages/macOSBigSur.tar
- name: Uploading `macOS Big Sur` Windows artifact
uses: actions/upload-artifact@v2
with:
name: macOS Big Sur Windows
path: packages/macOSBigSur_Windows.zip

View file

@ -1 +0,0 @@
dnd_no_drop.svg

Before

Width:  |  Height:  |  Size: 15 B

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

View file

@ -0,0 +1,15 @@
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<g opacity="0.01">
<path opacity="0.01" d="M200 0H0V200H200V0Z" fill="white"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M51.4285 137.143C51.4285 165.543 74.457 188.571 102.857 188.571C131.257 188.571 154.286 165.543 154.286 137.143C154.286 108.737 131.257 85.7143 102.857 85.7143C74.457 85.7143 51.4285 108.737 51.4285 137.143Z" fill="url(#paint0_linear)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.7144 99.5537V8.03943L111.949 74.4337H71.7144L70.8515 75.1423L45.7144 99.5537Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.938 137.143L123.058 125.023C125.293 122.789 125.293 119.171 123.058 116.937C120.83 114.709 117.213 114.709 114.978 116.937L102.858 129.063L90.7326 116.937C88.5041 114.709 84.8869 114.709 82.6526 116.937C80.4241 119.171 80.4241 122.789 82.6526 125.023L94.7783 137.143L82.6526 149.263C80.4241 151.497 80.4241 155.114 82.6526 157.349C84.8869 159.577 88.5041 159.577 90.7326 157.349L102.858 145.223L114.978 157.349C117.213 159.577 120.83 159.577 123.058 157.349C125.293 155.114 125.293 151.497 123.058 149.263L110.938 137.143Z" fill="#5A5A5A"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M51.4285 21.7943V85.7257L68.3942 69.3486L69.3085 68.5543H98.0856L51.4285 21.7943Z" fill="black"/>
<defs>
<linearGradient id="paint0_linear" x1="102.857" y1="85.7143" x2="102.857" y2="188.571" gradientUnits="userSpaceOnUse">
<stop stop-color="#F0F0F0"/>
<stop offset="1" stop-color="#D5D5D5"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 15 B

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After