Skip to content

Commit 21ebf4f

Browse files
author
Daniel Schmidt
committed
fixme
1 parent f4b22ba commit 21ebf4f

File tree

1 file changed

+4
-17
lines changed

1 file changed

+4
-17
lines changed

.github/workflows/docker-compose-test.yml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,18 @@ on:
77
env:
88
COMPOSE_FILE: docker-compose.yml:docker-compose.ci.yml
99
DOCKER_APP_IMAGE: ghcr.io/${GITHUB_REPOSITORY,,}:sha-${GITHUB_SHA:0:7}
10-
WAIT_SECONDS: 10
1110

1211
jobs:
13-
setup:
12+
test:
1413
runs-on: ubuntu-latest
15-
outputs:
16-
docker_app_image: ${{ steps.set_image.outputs.docker_app_image }}
17-
steps:
18-
- name: Checkout repository
19-
uses: actions/checkout@v4
2014

21-
- name: Set Docker App Image
22-
id: set_image
23-
run: echo "::set-output name=docker_app_image::ghcr.io/${GITHUB_REPOSITORY,,}:sha-${GITHUB_SHA,,}"
24-
25-
test:
26-
needs: setup
2715
permissions:
2816
packages: read
2917
contents: read
30-
runs-on: ubuntu-latest
31-
env:
32-
DOCKER_APP_IMAGE: ${{ needs.setup.outputs.docker_app_image }}
18+
3319
steps:
34-
- run: env | sort
20+
- name: Dump the environment
21+
run: env | sort
3522

3623
- name: Checkout repository
3724
uses: actions/checkout@v4

0 commit comments

Comments
 (0)