From 09fbec06971515802b45c4a39d1e9fbb8ebce0b3 Mon Sep 17 00:00:00 2001 From: elimoshkovich Date: Sun, 17 Mar 2024 20:53:19 +0200 Subject: [PATCH] check1 --- .github/workflows/pdp_cicd.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/pdp_cicd.yml diff --git a/.github/workflows/pdp_cicd.yml b/.github/workflows/pdp_cicd.yml new file mode 100644 index 00000000..423a3072 --- /dev/null +++ b/.github/workflows/pdp_cicd.yml @@ -0,0 +1,33 @@ +name: Build and Push Docker Image +on: push + # release: + # types: [published] +jobs: + build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + push: false + context: . + platforms: linux/amd64,linux/arm64 + #tags: permitio/pdp:${{ github.event.release.tag_name }} + tags: permitio/pdp:check1 + cache-from: type=gha + cache-to: type=gha,mode=max \ No newline at end of file