Skip to content

Commit

Permalink
check1
Browse files Browse the repository at this point in the history
  • Loading branch information
EliMoshkovich committed Mar 17, 2024
1 parent e594081 commit 09fbec0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/pdp_cicd.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 09fbec0

Please sign in to comment.