ADD: meson-gcc docker image

This commit is contained in:
Guillaume Lamé 2025-01-22 11:33:09 +01:00
parent d41dfbf3ae
commit a8f1e52487
2 changed files with 42 additions and 0 deletions

30
.github/workflows/docker-image.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: Build and Push Docker Image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: lomigandtux/meson-gcc:latest