Skip to content

Commit

Permalink
Test issue 133
Browse files Browse the repository at this point in the history
  • Loading branch information
whoan committed Oct 15, 2023
1 parent 3e6e230 commit 6f2e14c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,14 @@ jobs:
password: "${{ secrets.GITHUB_TOKEN }}"
registry: docker.pkg.github.com
compose_file: docker-compose.yml

build-compose-2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- uses: whoan/docker-build-with-cache-action@issue-133
with:
username: whoan
password: "${{ secrets.DOCKER_HUB_PASSWORD }}"
compose_file: foo/docker-compose.yml
3 changes: 3 additions & 0 deletions foo/bar/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM alpine:3.11.6

ENTRYPOINT echo hello world
8 changes: 8 additions & 0 deletions foo/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3'

services:
bar:
image: bar
build:
context: .
dockerfile: bar/Dockerfile

0 comments on commit 6f2e14c

Please sign in to comment.