Skip to content

Commit

Permalink
Add image build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
henrybear327 committed Aug 29, 2024
1 parent 85494bf commit b49d7e6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Build docker image
on: [push, pull_request]
permissions: read-all
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: netbox-operator

0 comments on commit b49d7e6

Please sign in to comment.