Skip to content

Commit

Permalink
updated build files
Browse files Browse the repository at this point in the history
  • Loading branch information
waymondrang committed Feb 14, 2022
1 parent 72d5a31 commit 1b83f8b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,10 @@ if (will_package) {
execSync(`package.sh \"v${source_manifest.version}\" \"${config.project_name_short}\" \"${package.platform}\" \"${package.directory}\" \"${config.release_directory}\"`);
log(`packaged ${source_manifest.version} for ` + package.platform);
}
if (will_git) {
log("pushing completed packages to github");
execSync(`git.sh \"${config.git_messages.packages}\"`);
}
} else {
log("skipping zipping files");
}
3 changes: 2 additions & 1 deletion build_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
}
],
"git_messages": {
"directory_sync": "automated directory sync"
"directory_sync": "automated directory sync",
"packages": "automated package build"
}
}
2 changes: 1 addition & 1 deletion git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ if [ $# -eq 0 ]; then
fi

git status
git add .
git add *
git commit -m " ${1} "
git push origin main
Binary file removed releases/dad_v0.3.3_chrome.zip
Binary file not shown.
Binary file removed releases/dad_v0.3.3_firefox.zip
Binary file not shown.
Binary file removed releases/dad_v0.3.3_opera.zip
Binary file not shown.

0 comments on commit 1b83f8b

Please sign in to comment.