Skip to content

Commit

Permalink
fix(workflows): Fix broken workflows
Browse files Browse the repository at this point in the history
All of sudden workflows are not working anymore,
as docker-compose is missing.

```
Run docker-compose -f test-docker-compose.yaml down
/home/runner/work/_temp/99b8e55a-c49f-4174-934d-3578b404c126.sh: line 1: docker-compose: command not found
Error: Process completed with exit code 127.
```

Signed-off-by: Denys Fedoryshchenko <[email protected]>
  • Loading branch information
nuclearcat committed Aug 8, 2024
1 parent 6adad5b commit ad4a4cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ jobs:
echo "[email protected]" >> .env
echo "EMAIL_PASSWORD=random" >> .env
- name: Install necessary packages
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get install -y docker-compose docker.io
- name: Build docker images
run: docker-compose -f test-docker-compose.yaml build --no-cache

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jobs:
echo "[email protected]" >> .env
echo "EMAIL_PASSWORD=random" >> .env
- name: Install necessary packages
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-get update
sudo apt-get install -y docker-compose docker.io
- name: Build docker images
run: docker-compose -f test-docker-compose.yaml build --no-cache

Expand Down

0 comments on commit ad4a4cc

Please sign in to comment.