We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3af0ebd commit b768a76Copy full SHA for b768a76
.github/workflows/deploy.yml
@@ -6,7 +6,7 @@ on:
6
workflow_dispatch:
7
8
concurrency:
9
- group: deploy-${{ github.workflow }}-${{ github.ref_name }}
+ group: deploy-${{github.workflow}}-${{github.ref_name}}
10
cancel-in-progress: true
11
12
permissions:
@@ -82,5 +82,6 @@ jobs:
82
docker pull ${IMAGE}:${SHA_TAG}
83
docker tag ${IMAGE}:${SHA_TAG} ${IMAGE}:${ROLLING_TAG}
84
85
- docker compose up -d --no-deps --force-recreate ${{steps.meta.outputs.service}}
+ unset COMPOSE_FILE
86
+ docker compose -f docker-compose.yml up -d --no-deps --force-recreate ${{steps.meta.outputs.service}}
87
docker image prune -af --filter "until=168h"
0 commit comments