File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed
Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -17,17 +17,14 @@ jobs:
1717 - name : Log in to GitHub Container Registry
1818 uses : docker/login-action@v2
1919 with :
20- registry : ${{ env.REGISTRY }}
20+ registry : ghcr.io
2121 username : ${{ github.repository_owner }}
2222 password : ${{ secrets.GITHUB_TOKEN }}
2323
24- - name : Set up Docker Buildx
24+ - name : Set up Docker Compose
2525 uses : docker/setup-buildx-action@v2
2626
27- - name : Build and push Docker image
28- uses : docker/build-push-action@v2
29- with :
30- context : ./docker/
31- file : Dockerfile
32- push : true
33- tags : ghcr.io/p-society/gc-broadcast:latest
27+ - name : Build and push Docker image using docker-compose
28+ run : |
29+ docker-compose -f docker-compose.yml build
30+ docker-compose -f docker-compose.yml push
You can’t perform that action at this time.
0 commit comments