Skip to content

Commit

Permalink
[CI] Add build-only workflow.
Browse files Browse the repository at this point in the history
Signed-off-by: Juri Berlanda <[email protected]>
  • Loading branch information
j-be committed Dec 22, 2024
1 parent 9d85790 commit 9c5d24b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-no-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build and Push

on:
push:
tags-ignore:
- '**'
branches:
- '**'

jobs:
buildx:
name: Build

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

# Setup Buildx
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/amd64

# Build
- name: Build
uses: docker/build-push-action@v4
with:
platforms: linux/amd64

0 comments on commit 9c5d24b

Please sign in to comment.