From 5fc13cef85c5c9a7ebac76397f51d5bb4e60ff1f Mon Sep 17 00:00:00 2001 From: okjodom Date: Tue, 29 Oct 2024 23:08:37 +0300 Subject: [PATCH] feat: publish api gateway --- .github/workflows/publish-api.yml | 63 +++++++++++++++++++++++++++++++ apps/swap/Dockerfile | 2 +- 2 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/publish-api.yml diff --git a/.github/workflows/publish-api.yml b/.github/workflows/publish-api.yml new file mode 100644 index 0000000..f7545c1 --- /dev/null +++ b/.github/workflows/publish-api.yml @@ -0,0 +1,63 @@ +name: publish-api + +on: + push: + paths: + - apps/api/** + - libs/** + - package.json + - bun.lockb + - .github/workflows/publish-api.yml + workflow_dispatch: + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: | + bitsacco/api + tags: | + type=ref,event=branch + type=ref,event=pr + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=sha + + - name: Login to Docker Hub + if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') + uses: docker/login-action@v2 + with: + username: okjodom + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + + - name: Build and push api + uses: docker/build-push-action@v4 + with: + file: apps/api/Dockerfile + push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + + - name: Checkout repository content + if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') + uses: actions/checkout@v4 + + # This workflow requires the repository content to be locally available to read the README + - name: Update the Docker Hub description + if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') + uses: peter-evans/dockerhub-description@v3 + with: + username: okjodom + password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + repository: bitsacco/api + readme-filepath: ./apps/api/README.md diff --git a/apps/swap/Dockerfile b/apps/swap/Dockerfile index 8c25d34..eff4932 100644 --- a/apps/swap/Dockerfile +++ b/apps/swap/Dockerfile @@ -37,4 +37,4 @@ RUN bun install --production COPY --from=development /usr/src/app/dist ./dist COPY --from=development /usr/src/app/proto ./proto -CMD ["sh", "-c", "bun prisma migarate deploy && bun dist/apps/swap/main.js"] +CMD ["sh", "-c", "bun prisma migrate deploy && bun dist/apps/swap/main.js"]