From 4366afb74eedb4a77a6a6f477a588e72b8fd63d0 Mon Sep 17 00:00:00 2001 From: Raman <24293550+ramank775@users.noreply.github.com> Date: Thu, 23 Nov 2023 09:14:01 +0530 Subject: [PATCH 1/2] feat: added github action Added github action to publish docker images --- .github/workflow/ci.yaml | 42 ++++++++++++++++++++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 43 insertions(+) create mode 100644 .github/workflow/ci.yaml diff --git a/.github/workflow/ci.yaml b/.github/workflow/ci.yaml new file mode 100644 index 0000000..ef2d477 --- /dev/null +++ b/.github/workflow/ci.yaml @@ -0,0 +1,42 @@ +name: "ci" + +on: + workflow_dispatch: + push: + branches: + - "master" + tags: + - "v*" + +jobs: + docker: + runs-on: ubuntu-latest + environment: ci + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Docker meta + id: meta + uses: docker/metadata-action@v4 + with: + images: ${{ vars.REGISTRY_IMAGE }} + tags: | + type=ref,event=branch + type=ref,event=tag + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v4 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 22990c0..be13723 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ results node_modules npm-debug.log +!.github/** From 0f7b4166d91144a713f2f09c38e1b9b3360f7caf Mon Sep 17 00:00:00 2001 From: Raman <24293550+ramank775@users.noreply.github.com> Date: Thu, 23 Nov 2023 04:11:17 +0000 Subject: [PATCH 2/2] rename workflow -> workflows --- .github/{workflow => workflows}/ci.yaml | 0 .gitignore | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .github/{workflow => workflows}/ci.yaml (100%) diff --git a/.github/workflow/ci.yaml b/.github/workflows/ci.yaml similarity index 100% rename from .github/workflow/ci.yaml rename to .github/workflows/ci.yaml diff --git a/.gitignore b/.gitignore index be13723..3f87e5e 100644 --- a/.gitignore +++ b/.gitignore @@ -14,4 +14,4 @@ results node_modules npm-debug.log -!.github/** +!.github