We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e68f6da commit f9949ddCopy full SHA for f9949dd
.github/workflows/build.yml
@@ -114,6 +114,7 @@ jobs:
114
env:
115
COMPOSE_FILE: docker-compose.yml:docker-compose.ci.yml
116
DOCKER_APP_IMAGE: ${{ needs.merge.outputs.image }}
117
+ SECRET_KEY_BASE: ${{ secrets.SECRET_KEY_BASE }}
118
steps:
119
- name: Checkout code
120
uses: actions/checkout@v4
docker-compose.ci.yml
@@ -6,6 +6,8 @@ services:
6
image: ${DOCKER_APP_IMAGE}
7
volumes: !override
8
- artifacts:/opt/app/artifacts
9
+ environment:
10
+ SECRET_KEY_BASE: ${SECRET_KEY_BASE:?error}
11
12
db:
13
volumes: !reset
0 commit comments