We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f83c54 commit 4f73b6aCopy full SHA for 4f73b6a
2 files changed
.github/workflows/build.yml
@@ -135,11 +135,15 @@ jobs:
135
docker compose up --wait
136
docker compose exec app rails assets:precompile
137
docker compose exec -u root app chown -R nara:nara artifacts
138
+ env:
139
+ SECRET_KEY_BASE: ${{ secrets.SECRET_KEY_BASE}}
140
141
- name: Run RSpec
142
if: ${{ always() }}
143
run: |
144
docker compose exec -e RAILS_ENV=test app rake check
145
146
147
148
- name: Run Rubocop
149
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