From 5b2e1f7a117777b583cd6d728df64fb31fe1482c Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Thu, 29 Jan 2026 12:38:44 -0500 Subject: [PATCH] github: add build --- .github/workflows/build.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..083f55f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,30 @@ +name: Build and Push + +on: + push: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v4 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push + uses: docker/build-push-action@v6 + with: + file: Containerfile + context: . + push: true + tags: ghcr.io/${{ github.repository }}:latest -- 2.51.2