Skip to content

Commit

Permalink
Fix missing dot.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit91 committed Aug 6, 2020
1 parent 02be894 commit fe522a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
md5sum ./dist/docker-make > dist/docker-make.md5
- name: Build Alpine Linux
run: |
docker build -f ci-build/Dockerfile.alpine -t metalstack/docker-make:alpine
docker build -f ci-build/Dockerfile.alpine . -t metalstack/docker-make:alpine
docker cp $(docker create $(docker image ls --format '{{ .ID }}' | sed -n 1p)):/docker-make dist/docker-make-musl
md5sum dist/docker-make-musl > dist/docker-make-musl.md5
- name: Publish Dockerfiles
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
md5sum ./dist/docker-make > dist/docker-make.md5
- name: Build Alpine Linux
run: |
docker build -f ci-build/Dockerfile.alpine -t metalstack/docker-make:${TAG_NAME}-alpine
docker build -f ci-build/Dockerfile.alpine . -t metalstack/docker-make:${TAG_NAME}-alpine
docker cp $(docker create $(docker image ls --format '{{ .ID }}' | sed -n 1p)):/docker-make dist/docker-make-musl
md5sum dist/docker-make-musl > dist/docker-make-musl.md5
- name: Publish Dockerfiles
Expand Down

0 comments on commit fe522a3

Please sign in to comment.