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.
1 parent fd860d0 commit 799e9c8Copy full SHA for 799e9c8
.github/workflows/docker-test-build.yml
@@ -0,0 +1,29 @@
1
+name: Docker test build
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+concurrency:
10
+ group: ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress: true
12
13
+permissions:
14
+ contents: read
15
16
+jobs:
17
+ build-image:
18
+ runs-on: ubuntu-latest
19
20
+ # steps taken (and trimmed) from docker-publish.yml
21
+ steps:
22
+ - name: Checkout repository
23
+ uses: actions/checkout@v2
24
25
+ - name: Build and push Docker image
26
+ uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
27
+ with:
28
+ context: .
29
+ push: false
0 commit comments