diff --git a/.github/workflows/publish-container.yml b/.github/workflows/publish-container.yml index 0081f5516..bf2978eb4 100644 --- a/.github/workflows/publish-container.yml +++ b/.github/workflows/publish-container.yml @@ -12,6 +12,7 @@ on: pull_request: paths: - 'packages/container/**' + - 'packages/service/**' - '.github/workflows/publish-container.yml' branches: - next @@ -31,20 +32,29 @@ jobs: matrix: include: - image: alpine + path: container/alpine description: A minimal Docker image based on Alpine Linux with a complete package index and only 5 MB in size! version: short: 3 full: 3.16 - image: nginx + path: container/nginx description: High performance, optimized NGINX for server web applications and api proxy with fast cache. version: short: 1 full: 1.0.0-1.23-alpine # - image: tdlib + # path: container/tdlib # description: Cross-platform library for building Telegram clients. # version: # short: 1 # full: 1.8 + - image: storage-server + path: service/storage-server + description: Storage nanoservice with disk backed, Fastest NoSQL Database. + version: + short: 22 + full: 0.22.0 permissions: contents: read @@ -98,7 +108,7 @@ jobs: id: build-and-push uses: docker/build-push-action@v3 with: - context: packages/container/${{matrix.image}} + context: packages/${{matrix.path}} push: ${{github.event_name != 'pull_request'}} tags: ${{steps.meta.outputs.tags}} labels: ${{steps.meta.outputs.labels}}