Skip to content

Commit 86e3e4f

Browse files
committed
Add action to build docker image
Signed-off-by: Olivier Vernin <olivier@vernin.me>
1 parent 07a0214 commit 86e3e4f

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/docker.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: docker
3+
# Testing that we can still build the docker image used by Github Action
4+
5+
on:
6+
pull_request:
7+
workflow_dispatch:
8+
9+
jobs:
10+
docker:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
- name: Set up QEMU
16+
uses: docker/setup-qemu-action@v1
17+
- name: Set up Docker Buildx
18+
uses: docker/setup-buildx-action@v1
19+
- name: Build and push
20+
uses: docker/build-push-action@v2
21+
with:
22+
context: .
23+
push: false
24+
tags: updatecli/updatecli-action

0 commit comments

Comments
 (0)