Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
IRHM committed Jan 6, 2023
1 parent f95932d commit f45dca5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
uses: samuelmeuli/action-electron-builder@v1
with:
github_token: ${{ secrets.github_token }}

build_script_name: "compile"
# Extra electron-builder args.. adding config location
args: "--config builder.config.js"
# If tag on commit starts with 'v' then also release build
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "casterr",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "Easy screen recording and sharing",
"author": {
Expand All @@ -16,7 +16,8 @@
"prettier:formatall": "prettier --write '**/*.{ts,js,tsx,json}'",
"prettier:check": "prettier --check '**/*.{ts,js,tsx,json}'",
"lint": "eslint .",
"build": "npm run build:entry-scripts && vite build && electron-builder build --config builder.config.js"
"compile": "npm run build:entry-scripts && vite build",
"build": "npm run compile && electron-builder build --config builder.config.js"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
Expand Down

0 comments on commit f45dca5

Please sign in to comment.