mirror of
https://github.com/Damillora/Yuika
synced 2024-11-22 09:17:33 +00:00
feat(theme): add CI
This commit is contained in:
parent
9ee0b604fd
commit
f90c74f879
17
.github/workflows/workflow.yml
vendored
Normal file
17
.github/workflows/workflow.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: CI
|
||||||
|
on: push
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: ubuntu-16.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: '14'
|
||||||
|
- run: yarn install
|
||||||
|
- run: yarn zip
|
||||||
|
- name: Release
|
||||||
|
env:
|
||||||
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
|
run: npx semantic-release
|
20
.releaserc.json
Normal file
20
.releaserc.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"branches": [
|
||||||
|
"main"
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"@semantic-release/commit-analyzer",
|
||||||
|
"@semantic-release/release-notes-generator",
|
||||||
|
[
|
||||||
|
"@semantic-release/github",
|
||||||
|
{
|
||||||
|
"assets": [
|
||||||
|
{
|
||||||
|
"path": "dist/yuika.zip",
|
||||||
|
"label": "Theme zip"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
120
package.json
120
package.json
@ -1,59 +1,67 @@
|
|||||||
{
|
{
|
||||||
"name": "yuika",
|
"name": "yuika",
|
||||||
"description": "nanao.moe's blog theme",
|
"description": "nanao.moe's blog theme",
|
||||||
"version": "3.0.4",
|
"version": "0.0.0-development",
|
||||||
"engines": {
|
"engines": {
|
||||||
"ghost-api": "v3"
|
"ghost-api": "v3"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": {
|
"author": {
|
||||||
"email": "developer@damillora.com"
|
"email": "developer@damillora.com"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "gulp dev",
|
"dev": "gulp dev",
|
||||||
"zip": "gulp zip"
|
"zip": "gulp zip",
|
||||||
},
|
"semantic-release": "semantic-release"
|
||||||
"config": {
|
},
|
||||||
"posts_per_page": 12,
|
"config": {
|
||||||
"image_sizes": {
|
"posts_per_page": 12,
|
||||||
"xxs": {
|
"image_sizes": {
|
||||||
"width": 30
|
"xxs": {
|
||||||
},
|
"width": 30
|
||||||
"xs": {
|
},
|
||||||
"width": 100
|
"xs": {
|
||||||
},
|
"width": 100
|
||||||
"s": {
|
},
|
||||||
"width": 300
|
"s": {
|
||||||
},
|
"width": 300
|
||||||
"m": {
|
},
|
||||||
"width": 600
|
"m": {
|
||||||
},
|
"width": 600
|
||||||
"l": {
|
},
|
||||||
"width": 1000
|
"l": {
|
||||||
},
|
"width": 1000
|
||||||
"xl": {
|
},
|
||||||
"width": 1600
|
"xl": {
|
||||||
},
|
"width": 1600
|
||||||
"xxl": {
|
},
|
||||||
"width": 1920
|
"xxl": {
|
||||||
}
|
"width": 1920
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"ghost-theme",
|
|
||||||
"yuika"
|
|
||||||
],
|
|
||||||
"dependencies": {
|
|
||||||
"@damillora/shian": "^0.4.0",
|
|
||||||
"autoprefixer": "^10.2.1",
|
|
||||||
"gulp": "^4.0.2",
|
|
||||||
"gulp-clean-css": "^4.2.0",
|
|
||||||
"gulp-concat": "^2.6.1",
|
|
||||||
"gulp-livereload": "^4.0.2",
|
|
||||||
"gulp-postcss": "^9.0.0",
|
|
||||||
"gulp-uglify": "^3.0.2",
|
|
||||||
"gulp-zip": "^5.0.1",
|
|
||||||
"postcss": "^8.2.3",
|
|
||||||
"typeface-exo-2": "^0.0.72"
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"ghost-theme",
|
||||||
|
"yuika"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"@damillora/shian": "^0.4.0",
|
||||||
|
"autoprefixer": "^10.2.1",
|
||||||
|
"gulp": "^4.0.2",
|
||||||
|
"gulp-clean-css": "^4.2.0",
|
||||||
|
"gulp-concat": "^2.6.1",
|
||||||
|
"gulp-livereload": "^4.0.2",
|
||||||
|
"gulp-postcss": "^9.0.0",
|
||||||
|
"gulp-uglify": "^3.0.2",
|
||||||
|
"gulp-zip": "^5.0.1",
|
||||||
|
"postcss": "^8.2.3",
|
||||||
|
"typeface-exo-2": "^0.0.72"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/Damillora/Yuika.git"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"semantic-release": "^17.4.2"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user