Skip to content

Commit

Permalink
Workflow + docker update (#1364)
Browse files Browse the repository at this point in the history
* docker fix

* pipeline fix
  • Loading branch information
jan-stanek authored Sep 20, 2024
1 parent 255d986 commit 70fd61e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Create tarball
run: tar -czpf /tmp/workdir.tar.gz . && mv /tmp/workdir.tar.gz .
- name: Upload workdir
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: workdir
path: workdir.tar.gz
Expand All @@ -66,7 +66,7 @@ jobs:
needs: workdir
steps:
- name: Download workdir
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workdir
path: .
Expand All @@ -80,7 +80,7 @@ jobs:
needs: workdir
steps:
- name: Download workdir
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workdir
path: .
Expand All @@ -96,7 +96,7 @@ jobs:
needs: workdir
steps:
- name: Download workdir
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workdir
path: .
Expand All @@ -119,7 +119,7 @@ jobs:
needs: workdir
steps:
- name: Download workdir
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workdir
path: .
Expand All @@ -135,7 +135,7 @@ jobs:
needs: workdir
steps:
- name: Download workdir
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workdir
path: .
Expand All @@ -159,7 +159,7 @@ jobs:
needs: workdir
steps:
- name: Download workdir
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: workdir
path: .
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.4"

services:
app:
ports:
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ volumes:

x-app-base:
&app-base
container_name: srs.app
image: skaut/lebeda:8.1
volumes:
- www:/var/www
Expand All @@ -22,12 +21,14 @@ x-app-base:
services:
app:
<<: *app-base
container_name: srs.app
depends_on:
mysql:
condition: service_healthy

app-test:
<<: *app-base
container_name: srs.app-test
depends_on:
mysql-test:
condition: service_healthy
Expand Down

0 comments on commit 70fd61e

Please sign in to comment.