Skip to content

Commit

Permalink
Merge pull request docker-archive#660 from crazy-max/gha-init
Browse files Browse the repository at this point in the history
ci: init github actions
  • Loading branch information
thaJeztah authored Mar 27, 2022
2 parents 8448ce4 + ac9da15 commit 5d57e0b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: ci

on:
workflow_dispatch:
push:
branches:
- 'master'
- '[0-9]+.[0-9]{2}'
tags:
- 'v*'
pull_request:

jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
target:
- debian-bullseye
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Build
run: |
make ${{ matrix.target }}

0 comments on commit 5d57e0b

Please sign in to comment.