You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
333 B
16 lines
333 B
set -eu
|
|
|
|
GITHUB_BRANCH=${GITHUB_REF#refs/heads/}
|
|
|
|
if [ "$GITHUB_REPOSITORY" == "google/volley" ] && \
|
|
[ "$GITHUB_EVENT_NAME" == "push" ] && \
|
|
[ "$GITHUB_BRANCH" == "master" ]; then
|
|
echo -e "Publishing snapshot build...\n"
|
|
|
|
./gradlew publish
|
|
|
|
echo -e "Published snapshot build"
|
|
else
|
|
echo -e "Not publishing snapshot"
|
|
fi
|