Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
Setup GitHub Actions Workflow (gardenlinux#6)
Browse files Browse the repository at this point in the history
Build the image so we can see when it fails in a PR

We just had the issue when updating from bookworm to trixie.
This workflow should help us to identify such issues.
  • Loading branch information
fwilhe authored Aug 11, 2023
1 parent 1d91c1d commit bc88450
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the image
run: ./build base

0 comments on commit bc88450

Please sign in to comment.