-
Notifications
You must be signed in to change notification settings - Fork 8
/
release-publish.sh
136 lines (114 loc) · 4.13 KB
/
release-publish.sh
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#!/usr/bin/env bash
# TODO
#===================
# provide support for publishing locally in addition to GitHub Actions
set -u -e -o pipefail
VERBOSE=false
TRACE=false
DRY_RUN=false
# We read from a file because the list is also shared with build.sh
# Not using readarray because it does not handle \r\n
#OLD_IFS=$IFS # save old IFS value
#IFS=$'\r\n' GLOBIGNORE='*' command eval 'ALL_PACKAGES=($(cat ./modules.txt))'
#IFS=$OLD_IFS # restore IFS
PACKAGE=ngx-form-errors
EXPECTED_REPOSITORY="NationalBankBelgium/ngx-form-errors"
GITHUB_REF=${GITHUB_REF:-""}
#----------------------------------------------
# Uncomment block below to test locally
#----------------------------------------------
#LOGS_DIR=./.tmp/ngx-form-errors/logs
#mkdir -p ${LOGS_DIR}
#LOGS_FILE=${LOGS_DIR}/build-perf.log
#touch ${LOGS_FILE}
#GITHUB_ACTIONS=true
#GITHUB_REPOSITORY="NationalBankBelgium/ngx-form-errors"
#GITHUB_REF="refs/tags/fooBar"
#----------------------------------------------
readonly currentDir=$(cd $(dirname $0); pwd)
source ${currentDir}/scripts/ci/_ghactions-group.sh
source ${currentDir}/util-functions.sh
cd ${currentDir}
logInfo "============================================="
logInfo "NgxFormErrors release publish @ npm"
for ARG in "$@"; do
case "$ARG" in
--dry-run)
logInfo "============================================="
logInfo "Dry run enabled!"
DRY_RUN=true
;;
--verbose)
logInfo "============================================="
logInfo "Verbose mode enabled!"
VERBOSE=true
;;
--trace)
logInfo "============================================="
logInfo "Trace mode enabled!"
TRACE=true
;;
*)
echo "Unknown option $ARG."
exit 1
;;
esac
done
logInfo "============================================="
PROJECT_ROOT_DIR=`pwd`
logTrace "PROJECT_ROOT_DIR: ${PROJECT_ROOT_DIR}" 1
ROOT_PACKAGES_DIR=${PROJECT_ROOT_DIR}
logTrace "ROOT_PACKAGES_DIR: ${ROOT_PACKAGES_DIR}" 1
ghActionsGroupStart "publish checks" "no-xtrace"
if [[ ${GITHUB_ACTIONS} == true ]]; then
logInfo "============================================="
logInfo "Publishing to npm";
logInfo "============================================="
# Don't even try if not running against the official repo
# We don't want release to run outside of our own little world
if [[ ${GITHUB_REPOSITORY} != ${EXPECTED_REPOSITORY} ]]; then
logInfo "Skipping release because this is not the main repository.";
ghActionsGroupEnd "publish checks"
exit 0;
fi
logInfo "Verifying if this build has been triggered for a tag"
if [[ ${GITHUB_REF} != refs/tags/* ]]; then
logInfo "Not publishing because this is not a build triggered for a tag" 1
exit 0;
else
logInfo "This build has been triggered for a tag"
fi
fi
ghActionsGroupEnd "publish checks"
logInfo "============================================="
logInfo "Publishing package"
logInfo "============================================="
# FIXME Uncomment this once GitHub Actions support nested logs
# See: https://git.luolix.topmunity/t5/GitHub-Actions/Feature-Request-Enhancements-to-group-commands-nested-named/m-p/45399
#ghActionsGroupStart "publish" "no-xtrace"
#logInfo "Publishing package"
ghActionsGroupStart "publishing: ${PACKAGE}" "no-xtrace"
PACKAGE_FOLDER=${ROOT_PACKAGES_DIR}/dist
logTrace "Package path: ${PACKAGE_FOLDER}" 2
cd ${PACKAGE_FOLDER}
TGZ_FILES=`find . -maxdepth 1 -type f | egrep -e ".tgz"`;
for file in ${TGZ_FILES}; do
logInfo "Publishing TGZ file: ${TGZ_FILES}" 2
if [[ ${DRY_RUN} == false ]]; then
if [[ ${GITHUB_REF} =~ /(alpha|beta|rc)/ ]]; then
logTrace "Publishing the release (with tag next)" 2
npm publish ${file} --tag next --access public
else
logTrace "Publishing the release (with tag latest)" 2
npm publish ${file} --access public
fi
else
logTrace "DRY RUN, skipping npm publish!" 2
fi
logInfo "Package published!" 2
done
cd - > /dev/null; # go back to the previous folder without any output
ghActionsGroupEnd "publishing: ${PACKAGE}"
#ghActionsGroupEnd "publish"
# Print return arrows as a log separator
ghActionsGroupReturnArrows