Skip to content

Commit

Permalink
Add GHA docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
roceb committed Nov 14, 2024
1 parent f00ffaa commit 2f8a664
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build

on:
push:
branches:
- main
pull_request:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and push
uses: lsst-dm/build-and-push@main
id: build
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
platforms: linux/amd64,linux/arm64
image: ${{ github.repository }}
push: true

0 comments on commit 2f8a664

Please sign in to comment.