Compare commits
2 Commits
f37f279098
...
v3.3.5.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
612eccf03b | ||
|
|
76a9de27c2 |
@@ -29,8 +29,10 @@ jobs:
|
|||||||
docker pull "$IMAGE:$TAG"
|
docker pull "$IMAGE:$TAG"
|
||||||
docker tag "$IMAGE:$TAG" golfgame-app:latest
|
docker tag "$IMAGE:$TAG" golfgame-app:latest
|
||||||
|
|
||||||
# Update code for compose/env changes
|
# Update code for compose/env changes. `--tags --force` so a
|
||||||
git fetch origin
|
# moved tag (hotfix on top of existing version) updates locally
|
||||||
|
# instead of silently checking out the stale cached position.
|
||||||
|
git fetch origin --tags --force
|
||||||
git checkout "$TAG"
|
git checkout "$TAG"
|
||||||
|
|
||||||
# Restart app
|
# Restart app
|
||||||
|
|||||||
@@ -21,8 +21,11 @@ jobs:
|
|||||||
|
|
||||||
cd /opt/golfgame
|
cd /opt/golfgame
|
||||||
|
|
||||||
# Pull latest code and checkout the release tag
|
# Pull latest code and checkout the release tag. `--tags --force`
|
||||||
git fetch origin
|
# so that a tag moved on origin (e.g. hotfix on top of an existing
|
||||||
|
# version) actually updates locally instead of silently reusing a
|
||||||
|
# stale cached tag position.
|
||||||
|
git fetch origin --tags --force
|
||||||
git checkout "$TAG"
|
git checkout "$TAG"
|
||||||
|
|
||||||
# Build the image
|
# Build the image
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ services:
|
|||||||
- BOOTSTRAP_ADMIN_USERNAME=${BOOTSTRAP_ADMIN_USERNAME:-}
|
- BOOTSTRAP_ADMIN_USERNAME=${BOOTSTRAP_ADMIN_USERNAME:-}
|
||||||
- BOOTSTRAP_ADMIN_PASSWORD=${BOOTSTRAP_ADMIN_PASSWORD:-}
|
- BOOTSTRAP_ADMIN_PASSWORD=${BOOTSTRAP_ADMIN_PASSWORD:-}
|
||||||
- MATCHMAKING_ENABLED=true
|
- MATCHMAKING_ENABLED=true
|
||||||
|
- LEADERBOARD_INCLUDE_TEST_DEFAULT=${LEADERBOARD_INCLUDE_TEST_DEFAULT:-false}
|
||||||
depends_on:
|
depends_on:
|
||||||
postgres:
|
postgres:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
|||||||
Reference in New Issue
Block a user