aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.github/workflows/ci.yml
blob: 3e8188a13bd2673dc122159f72cb0eafaef467fd (plain) (tree)
1
2
3
4
5
6
7
8
9
        






                    
         
                          
                              

                      
                                 
                                   


                              
                          
                                

                      
                                 
                                     


                               
                            


                                     
                          
                                           


                                         
                                 
                         
                                         
                                  
                                           
                                 
                                    



                                                       
                                         





                                                                                
name: CI

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  docker:
    runs-on: ubuntu-latest
    name: Build / docker build
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Build /w docker build
        run: make docker/build

  compose:
    runs-on: ubuntu-latest
    name: Build / docker-compose
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Build w/ docker-compose
        run: make compose/build

  publish:
    needs: [docker, compose]
    strategy:
      matrix:
        project: [dump1090, fr24feed]
    runs-on: ubuntu-latest
    name: 'Publish / ${{ matrix.project }}'
    if: github.ref == 'refs/heads/master'
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Set up QEMU
        uses: docker/setup-qemu-action@v2
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2
      - name: Login to Docker Hub
        uses: docker/login-action@v2
        with:
          username: '${{ secrets.DOCKERHUB_USERNAME }}'
          password: '${{ secrets.DOCKERHUB_TOKEN }}'
      - name: 'Publish ${{ matrix.project }}'
        uses: docker/build-push-action@v3
        with:
          context: '${{ matrix.project }}'
          file: '${{ matrix.project }}/Dockerfile'
          platforms: linux/i386,linux/amd64,linux/armhf
          push: true
          tags: '${{ secrets.DOCKERHUB_USERNAME }}/${{ matrix.project }}:latest'