We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a21971 commit f405404Copy full SHA for f405404
.github/workflows/build.yml
@@ -133,6 +133,8 @@ jobs:
133
password: ${{ secrets.GITHUB_TOKEN }}
134
135
- name: Run the test script
136
+ env:
137
+ LIT_TIND_API_KEY: ${{ secrets.LIT_TIND_API_KEY }}
138
run: |
139
docker compose run --rm --user root app chown -R avplayer:avplayer artifacts
140
docker compose up --detach --wait
docker-compose.ci.yml
@@ -4,8 +4,14 @@ services:
4
app:
5
build: !reset
6
image: ${DOCKER_APP_IMAGE}
7
+ secrets:
8
+ - LIT_TIND_API_KEY
9
volumes: !override
10
- artifacts:/opt/app/artifacts
11
12
+secrets:
13
+ LIT_TIND_API_KEY:
14
+ environment: LIT_TIND_API_KEY
15
+
16
volumes:
17
artifacts:
0 commit comments