From 649a571b112c538d9f975e3c6764e06de0296f22 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Wed, 4 Mar 2026 15:10:32 -0500 Subject: [PATCH 1/2] ci: automate docker build and push via github actions --- .github/workflows/docker-publish.yml | 47 ++++++++++++++++++++++++++++ CHANGELOG.md | 1 + 2 files changed, 48 insertions(+) create mode 100644 .github/workflows/docker-publish.yml diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml new file mode 100644 index 00000000..9028e693 --- /dev/null +++ b/.github/workflows/docker-publish.yml @@ -0,0 +1,47 @@ +name: Build and Publish Docker Image + +on: + push: + branches: + - develop + release: + types: [published] + +jobs: + push_to_registry: + name: Push Docker image to Docker Hub + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v5 + with: + images: saelix/sencho + tags: | + # If pushing to develop, tag as 'dev' + type=raw,value=dev,enable=${{ github.ref == 'refs/heads/develop' }} + # If a release is published, tag as 'latest' and the specific version + type=raw,value=latest,enable=${{ github.event_name == 'release' }} + type=semver,pattern={{version}},enable=${{ github.event_name == 'release' }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=registry,ref=saelix/sencho:buildcache + cache-to: type=registry,ref=saelix/sencho:buildcache,mode=max diff --git a/CHANGELOG.md b/CHANGELOG.md index b9716e88..71e011ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,3 +8,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Git Flow branching strategy and branch protection. - GitHub Actions CI pipeline for automated TypeScript build verification. +- **Added:** Automated Docker Hub CI/CD pipeline for the `dev` and `latest` tags. From 69002b553e0473edcee032bad982ba5d89278529 Mon Sep 17 00:00:00 2001 From: SaelixCode Date: Wed, 4 Mar 2026 15:24:58 -0500 Subject: [PATCH 2/2] ci: fix npm cache dependency path for monorepo structure --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b70f4e1b..c6f8e3a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,9 @@ jobs: with: node-version: '20' cache: 'npm' + cache-dependency-path: | + backend/package-lock.json + frontend/package-lock.json - name: Install Backend Dependencies working-directory: ./backend