Skip to content

Commit 3727e53

Browse files
authored
Merge pull request #3 from olblak/docker
Add action to build docker image
2 parents 07a0214 + d26087c commit 3727e53

2 files changed

Lines changed: 31 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

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.code-workspace
2+
3+
*.env
4+
.idea
5+
.vscode
6+
7+
*.swp

0 commit comments

Comments
 (0)