Skip to content

Commit dd6f3cc

Browse files
committed
add gps to release scripts.
1 parent 5fbcc91 commit dd6f3cc

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ bin/sql-formatter
77
bin/phpstan
88
bin/jp.php
99
bin/php-parse
10+
bin/google-cloud-batch
1011
vendor
1112
.php_cs
1213
.php_cs.cache

Diff for: bin/release

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fi
1414

1515
CURRENT_BRANCH=`git rev-parse --abbrev-ref HEAD`
1616

17-
for REMOTE in origin stomp amqp-ext amqp-lib amqp-bunny amqp-tools pheanstalk gearman sqs fs redis dbal null rdkafka enqueue simple-client enqueue-bundle job-queue test async-event-dispatcher
17+
for REMOTE in origin stomp amqp-ext amqp-lib amqp-bunny amqp-tools pheanstalk gearman sqs gps fs redis dbal null rdkafka enqueue simple-client enqueue-bundle job-queue test async-event-dispatcher
1818
do
1919
echo ""
2020
echo ""
@@ -37,7 +37,7 @@ do
3737

3838
CHANGES_SINCE_LAST_RELEASE=$(git log "$LAST_RELEASE"...master)
3939
CHANGES_SINCE_LAST_RELEASE="$CHANGES_SINCE_LAST_RELEASE" | xargs echo -n
40-
if [[ ! -z "$CHANGES_SINCE_LAST_RELEASE" ]]; then
40+
if [[ ! -z "$CHANGES_SINCE_LAST_RELEASE" || -z $LAST_RELEASE]]; then
4141
echo "There are changes since last release. Releasing $1";
4242

4343
git tag $1 -s -m "Release $1"

Diff for: bin/subtree-split

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ remote rdkafka [email protected]:php-enqueue/rdkafka.git
5858
remote dbal [email protected]:php-enqueue/dbal.git
5959
remote null [email protected]:php-enqueue/null.git
6060
remote sqs [email protected]:php-enqueue/sqs.git
61+
remote gps [email protected]:php-enqueue/gps.git
6162
remote enqueue-bundle [email protected]:php-enqueue/enqueue-bundle.git
6263
remote job-queue [email protected]:php-enqueue/job-queue.git
6364
remote test [email protected]:php-enqueue/test.git
@@ -78,6 +79,7 @@ split 'pkg/redis' redis
7879
split 'pkg/dbal' dbal
7980
split 'pkg/null' null
8081
split 'pkg/sqs' sqs
82+
split 'pkg/gps' gps
8183
split 'pkg/enqueue-bundle' enqueue-bundle
8284
split 'pkg/job-queue' job-queue
8385
split 'pkg/test' test

0 commit comments

Comments
 (0)