Skip to content

Commit 55790f0

Browse files
committed
use action to build Dockerfile
1 parent 1c57135 commit 55790f0

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v2
24-
- name: Build
25-
shell: bash -l {0}
26-
run: |
27-
./build.sh
24+
- name: Build and push Docker images
25+
uses: docker/build-push-action@v1
26+
with:
27+
username: ${{ secrets.DOCKER_USERNAME }}
28+
password: ${{ secrets.DOCKER_PASSWORD }}
29+
repository: pdal/lambda
30+
tag_with_ref: true
31+
tag_with_sha: true

0 commit comments

Comments
 (0)