We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ab3300 commit 719f013Copy full SHA for 719f013
.github/workflows/branch-build.yaml
@@ -0,0 +1,35 @@
1
+name: Branch Build (Feature branch - no push)
2
+
3
+on:
4
+ push:
5
+ branches-ignore: [ dev, master]
6
7
+permissions:
8
+ contents: read
9
10
+concurrency:
11
+ group: pr-${{ github.ref }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
23
+ - name: Setup QEMU
24
+ uses: docker/setup-qemu-action@v3
25
26
+ - name: Setup Buildx
27
+ uses: docker/setup-buildx-action@v3
28
29
+ - name: Build (no push)
30
+ uses: docker/build-push-action@v5
31
32
+ context: .
33
+ file: ./Dockerfile
34
+ push: false
35
+ platforms: linux/amd64
0 commit comments