Skip to content

ci: let's just see if we can get them building for now #2

ci: let's just see if we can get them building for now

ci: let's just see if we can get them building for now #2

name: Build and Push Docker Images
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
# - name: Login to DockerHub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push Docker Images
run: make all
env:
GITHUB_REF: ${{ github.ref }}