-
Notifications
You must be signed in to change notification settings - Fork 6.8k
/
Copy pathpublish-build-artifacts.sh
executable file
·117 lines (88 loc) · 3.8 KB
/
publish-build-artifacts.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
#!/bin/bash
# Script to publish the build artifacts to a GitHub repository.
# Builds will be automatically published once new changes are made to the repository.
# The script should immediately exit if any command in the script fails.
set -e
# Go to the project root directory
cd $(dirname ${0})/../..
if [ -z ${SNAPSHOT_BUILDS_GITHUB_TOKEN} ]; then
echo "Error: No access token for GitHub could be found." \
"Please set the environment variable 'SNAPSHOT_BUILDS_GITHUB_TOKEN'."
exit 1
fi
# Release packages that need to published as snapshots.
PACKAGES=(
cdk
cdk-experimental
material
material-experimental
material-moment-adapter
# material-luxon-adapter TODO(crisbeto): enable this once we have a builds repo
# material-date-fns-adapter TODO(crisbeto): enable this once we have a builds repo
google-maps
youtube-player
)
# Command line arguments.
COMMAND_ARGS=${*}
# Function to publish artifacts of a package to Github.
# @param ${1} Name of the package
# @param ${2} Repository name of the package.
publishPackage() {
packageName=${1}
packageRepo=${2}
buildDir="$(pwd)/dist/releases/${packageName}"
buildVersion=$(node -pe "require('./package.json').version")
branchName=${GITHUB_REF_NAME:-'main'}
commitSha=$(git rev-parse --short HEAD)
commitAuthorName=$(git --no-pager show -s --format='%an' HEAD)
commitAuthorEmail=$(git --no-pager show -s --format='%ae' HEAD)
commitMessage=$(git log --oneline -n 1)
buildVersionName="${buildVersion}-sha-${commitSha}"
buildTagName="${branchName}-${commitSha}"
buildCommitMessage="${branchName} - ${commitMessage}"
repoUrl="https://github.com/angular/${packageRepo}.git"
repoDir="tmp/${packageRepo}"
echo "Starting publish process of ${packageName} for ${buildVersionName} into ${branchName}.."
# Prepare cloning the builds repository
rm -rf ${repoDir}
mkdir -p ${repoDir}
echo "Starting cloning process of ${repoUrl} into ${repoDir}.."
if [[ $(git ls-remote --heads ${repoUrl} ${branchName}) ]]; then
echo "Branch ${branchName} already exists. Cloning that branch."
git clone ${repoUrl} ${repoDir} --depth 1 --branch ${branchName}
cd ${repoDir}
echo "Cloned repository and switched into the repository directory (${repoDir})."
else
echo "Branch ${branchName} does not exist on ${packageRepo} yet."
echo "Cloning default branch and creating branch '${branchName}' on top of it."
git clone ${repoUrl} ${repoDir} --depth 1
cd ${repoDir}
echo "Cloned repository and switched into directory. Creating new branch now.."
git checkout -b ${branchName}
fi
# Copy the build files to the repository
rm -rf ./*
cp -r ${buildDir}/* ./
echo "Removed everything from ${packageRepo}#${branchName} and added the new build output."
if [[ $(git ls-remote origin "refs/tags/${buildTagName}") ]]; then
echo "Skipping publish because tag is already published"
exit 0
fi
echo "Updated the build version in every file to include the SHA of the latest commit."
# Prepare Git for pushing the artifacts to the repository.
git config user.name "${commitAuthorName}"
git config user.email "${commitAuthorEmail}"
git config credential.helper "store --file=.git/credentials"
echo "https://${SNAPSHOT_BUILDS_GITHUB_TOKEN}:@github.com" > .git/credentials
echo "Git configuration has been updated to match the last commit author. Publishing now.."
git add -A
git commit --allow-empty -m "${buildCommitMessage}"
git tag "${buildTagName}"
git push origin ${branchName} --tags --force
echo "Published package artifacts for ${packageName}#${buildVersionName} into ${branchName}"
}
for packageName in "${PACKAGES[@]}"; do
# Publish artifacts of the current package. Run publishing in a sub-shell to avoid
# working directory changes.
(publishPackage ${packageName} "${packageName}-builds")
done