Skip to content

Commit

Permalink
Fix Windows CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
jhildenbiddle committed Mar 8, 2024
1 parent a59fbff commit 1063ad8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: npm run build

- name: Prepare Release
if: runner.os == 'Linux' && startsWith(github.ref, 'refs/tags/')
if: runner.os == 'Linux'
run: |
echo "Release!!!"
npm run build:zip
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"build": "npm run build:css && npm run build:fonts",
"build:css": "postcss {src,src/themeable/**}/*.css --dir dist --base src",
"build:fonts": "cpy 'src/themeable/fonts/*' 'dist/themeable/fonts/'",
"build:zip": "cd dist && rimraf *.zip && zip typora-themeable -r ./* && zip typora-themeable -j ../themeable.md",
"clean": "rimraf dist/*",
"build:zip": "cd dist && rimraf --glob *.zip && zip typora-themeable -r ./* && zip typora-themeable -j ../themeable.md",
"clean": "rimraf --glob dist/*",
"lint": "markdownlint . --ignore node_modules",
"prepare": "npm run clean && npm run build",
"serve": "node server.js",
Expand Down

0 comments on commit 1063ad8

Please sign in to comment.