-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from ful1e5/dev
macOS Big Sur v1.1.1
- Loading branch information
Showing
50 changed files
with
1,409 additions
and
564 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,71 +1,71 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "**.md" | ||
- "**.bbcode" | ||
- LICENSE | ||
branches: [main, dev] | ||
pull_request: | ||
paths-ignore: | ||
- "**.md" | ||
- "**.bbcode" | ||
- LICENSE | ||
branches: [main] | ||
push: | ||
paths-ignore: | ||
- "**.md" | ||
- "**.bbcode" | ||
- LICENSE | ||
branches: [main, dev] | ||
pull_request: | ||
paths-ignore: | ||
- "**.md" | ||
- "**.bbcode" | ||
- LICENSE | ||
branches: [main] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install build dependencies (apt) | ||
run: sudo apt install -y 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)" | ||
- name: Caching yarn packages | ||
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- | ||
- name: Set Up NodeJS 12.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
- name: Caching pip packages | ||
uses: actions/cache@v2 | ||
id: pip-cache # use this to check for `cache-hit` (`steps.pip-cache.outputs.cache-hit != 'true'`) | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.8" | ||
- name: Generating `macOSBigSur` Cursor Theme | ||
run: make | ||
continue-on-error: false | ||
- name: Compressing UNIX theme | ||
run: tar -cvzf macOSBigSur.tar.gz themes/macOSBigSur | ||
- name: Uploading `bitmaps` artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: bitmaps | ||
path: bitmaps/* | ||
- name: Uploading `macOSBigSur` UNIX Theme artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: macOSBigSur | ||
path: macOSBigSur.tar.gz | ||
- name: Uploading `macOSBigSur` Windows Theme artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: macOSBigSur_Windows | ||
path: themes/macOSBigSur_Windows/* | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install build dependencies (apt) | ||
run: sudo apt install -y 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)" | ||
- name: Caching yarn packages | ||
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- | ||
- name: Set Up NodeJS 12.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
- name: Caching pip packages | ||
uses: actions/cache@v2 | ||
id: pip-cache # use this to check for `cache-hit` (`steps.pip-cache.outputs.cache-hit != 'true'`) | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }} | ||
restore-keys: | | ||
${{ runner.os }}-pip- | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.8" | ||
- name: Generating `macOSBigSur` Cursor Theme | ||
run: make | ||
continue-on-error: false | ||
- name: Compressing UNIX theme | ||
run: tar -cvzf macOSBigSur.tar.gz themes/macOSBigSur | ||
- name: Uploading `bitmaps` artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: bitmaps | ||
path: bitmaps/* | ||
- name: Uploading `macOSBigSur` UNIX Theme artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: macOSBigSur | ||
path: macOSBigSur.tar.gz | ||
- name: Uploading `macOSBigSur` Windows Theme artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: macOSBigSur_Windows | ||
path: themes/macOSBigSur_Windows/* |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
{ | ||
"name": "apple_cursor_bitmapper", | ||
"version": "1.1.0", | ||
"main": "index.js", | ||
"scripts": { | ||
"watch": "nodemon --inspect src/index.ts", | ||
"render": "yarn ts-node src/index.ts" | ||
}, | ||
"repository": "git@github.com:ful1e5/apple_cursor.git", | ||
"author": "Kaiz Khatri", | ||
"license": "GPL-3.0", | ||
"private": true, | ||
"devDependencies": { | ||
"@types/pixelmatch": "^5.2.2", | ||
"@types/pngjs": "^3.4.2", | ||
"@types/puppeteer": "^5.4.2", | ||
"nodemon": "^2.0.7", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"pixelmatch": "^5.2.1", | ||
"pngjs": "^6.0.0", | ||
"puppeteer": "^5.5.0" | ||
} | ||
"name": "apple_cursor_bitmapper", | ||
"version": "1.1.1", | ||
"main": "index.js", | ||
"scripts": { | ||
"watch": "nodemon --inspect src/index.ts", | ||
"render": "yarn ts-node src/index.ts" | ||
}, | ||
"repository": "git@github.com:ful1e5/apple_cursor.git", | ||
"author": "Kaiz Khatri", | ||
"license": "GPL-3.0", | ||
"private": true, | ||
"devDependencies": { | ||
"@types/pixelmatch": "^5.2.2", | ||
"@types/pngjs": "^3.4.2", | ||
"@types/puppeteer": "^5.4.2", | ||
"nodemon": "^2.0.7", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.1.3" | ||
}, | ||
"dependencies": { | ||
"pixelmatch": "^5.2.1", | ||
"pngjs": "^6.0.0", | ||
"puppeteer": "^5.5.0" | ||
} | ||
} |
Oops, something went wrong.