From 079f6bd9331f22d54e9da19c4738a38cda4bdff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Let=C3=ADcia=20Alves=20de=20Pontes?= <50830736+leticia-pontes@users.noreply.github.com> Date: Sun, 1 Dec 2024 09:42:23 -0300 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..bbab49b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,36 @@ +name: CI/CD Pipeline + +on: + push: + branches: + - develop + pull_request: + branches: + - main + +jobs: + build-and-push: + name: Build and Push Docker Image + runs-on: windows-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Log in to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + + - name: Build Docker image + run: | + docker build -t ${{ secrets.DOCKER_REGISTRY }}/palavra:${{ github.sha }} . + + - name: Push Docker image + run: | + docker push ${{ secrets.DOCKER_REGISTRY }}/palavra:${{ github.sha }} + + - name: Post-Build Cleanup + run: | + docker system prune -f