-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-intel.command
executable file
·54 lines (43 loc) · 1.39 KB
/
release-intel.command
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
# Your GitHub repository owner and name
OWNER="marcuzzz"
REPO=$(git config --get remote.origin.url | sed 's/.*\/\([^/]*\)\.git/\1/')
#Patch version:
if [ "$1" != "pass-patch" ]; then
# Increment the patch version
/opt/homebrew/bin/oc
npm version patch --force
echo "patched..."
fi
BUNDLEID=$(plutil -extract bundleid raw -o - ./info.plist)
NAME=${BUNDLEID##*.}
VERSION=$(jq -r .version package.json)
plutil -replace version -string $VERSION info.plist
npm run package-mac-intel
EXE=$(jq -r .name package.json)
FILENAME="$NAME.v$VERSION-intel.alfredworkflow"
plutil -replace version -string "$VERSION" info.plist
echo "NAME: $NAME"
echo "NEW VERSION: v$VERSION"
echo "Building release..."
echo
mkdir releases 2> /dev/null
zip "releases/$FILENAME" -r "$EXE" info.plist icon.png assets/*
echo
echo "Released $NAME v$VERSION"
echo " * releases/$FILENAME"
# if [ "$1" != "pass-patch" ]; then
# # Create a new release...
# git tag -a "v$VERSION" -m "Released $NAME v$VERSION"
# git push origin "v$VERSION"
# gh release create "v$VERSION" "./releases/$FILENAME" --notes "Released $NAME v$VERSION"
# echo "..."
# fi
if [ "$2" == "--force" ]; then
# git tag -a "v$VERSION" -m "Released $NAME v$VERSION"
# git push origin "v$VERSION"
gh release upload "v$VERSION" "./releases/$FILENAME"
echo "..."
fi
#echo "Opening new release"
#open "./releases/$FILENAME"