Skip to content

Commit 9a4799e

Browse files
committed
github actions with --build-arg UPGRADE_REQS="yes"
1 parent 1bf8c21 commit 9a4799e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docker.dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
MYAPP_VERSION=$(git rev-parse --short HEAD)
1414
docker buildx create --name mybuilder --driver docker-container --bootstrap --use
1515
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
16-
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_NAME=myapp --build-arg MYAPP_VERSION=${MYAPP_VERSION} --no-cache -t docker.io/mpgagebioinformatics/myapp:latest -f services/server/Dockerfile --push .
16+
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_NAME=myapp --build-arg MYAPP_VERSION=${MYAPP_VERSION} --build-arg UPGRADE_REQS="yes" --no-cache -t docker.io/mpgagebioinformatics/myapp:latest -f services/server/Dockerfile --push .
1717
- name: Set Success env
1818
run: echo "GITHUB_SHA_SHORT=$(echo $GITHUB_SHA | cut -c 1-8)" >> $GITHUB_ENV
1919
- name: Slack Success Notification

.github/workflows/docker.latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
MYAPP_VERSION=$(git rev-parse --short HEAD)
1919
docker buildx create --name mybuilder --driver docker-container --bootstrap --use
2020
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
21-
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_NAME=myapp --build-arg MYAPP_VERSION=${MYAPP_VERSION} --no-cache -t docker.io/mpgagebioinformatics/myapp:latest -f services/server/Dockerfile --push .
21+
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_NAME=myapp --build-arg MYAPP_VERSION=${MYAPP_VERSION} --build-arg UPGRADE_REQS="yes" --no-cache -t docker.io/mpgagebioinformatics/myapp:latest -f services/server/Dockerfile --push .
2222
- name: Set Success env
2323
run: echo "GITHUB_SHA_SHORT=$(echo $GITHUB_SHA | cut -c 1-8)" >> $GITHUB_ENV
2424
- name: Slack Success Notification

.github/workflows/docker.nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
MYAPP_VERSION=$(git rev-parse --short HEAD)
1717
docker buildx create --name mybuilder --driver docker-container --bootstrap --use
1818
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
19-
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_NAME=myapp --build-arg MYAPP_VERSION=${MYAPP_VERSION} --no-cache -t docker.io/mpgagebioinformatics/myapp:nightly -f services/server/Dockerfile --push .
19+
docker buildx build --platform linux/amd64,linux/arm64 --build-arg BUILD_NAME=myapp --build-arg MYAPP_VERSION=${MYAPP_VERSION} --build-arg UPGRADE_REQS="yes" --no-cache -t docker.io/mpgagebioinformatics/myapp:nightly -f services/server/Dockerfile --push .
2020
- name: Set Success env
2121
run: echo "GITHUB_SHA_SHORT=$(echo $GITHUB_SHA | cut -c 1-8)" >> $GITHUB_ENV
2222
- name: Slack Success Notification

0 commit comments

Comments
 (0)