We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07a0214 + d26087c commit 3727e53Copy full SHA for 3727e53
2 files changed
.github/workflows/docker.yaml
@@ -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
@@ -0,0 +1,7 @@
+*.code-workspace
+*.env
+.idea
+.vscode
+*.swp
0 commit comments