From 168a957a2d0112a05e7df3216d455ad62d980608 Mon Sep 17 00:00:00 2001 From: TimofeyTst Date: Sun, 8 Oct 2023 18:10:31 +0300 Subject: [PATCH] dev --- .github/workflows/main.yml | 72 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..b996cc1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,72 @@ +name: Publish Web UI Docker Image to Docker Hub + +on: + workflow_dispatch: + pull_request: + push: + branches: [ '*' ] + +jobs: + docker_setup: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ secrets.DOCKERHUB_USERNAME }}/eat-place + tags: value=rest_api_{{branch}} + + - 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 Dockerfile + if: github.ref != 'refs/heads/prod' + uses: docker/build-push-action@v5 + with: + push: true + file: Dockerfile + tags: ${{ steps.meta.outputs.tags }} + + - name: Build and push Dockerfile.prod + if: github.ref == 'refs/heads/prod' + uses: docker/build-push-action@v5 + with: + push: true + file: Dockerfile + tags: ${{ steps.meta.outputs.tags }} + + + deploy: + needs: docker_setup + if: github.ref == 'refs/heads/prod' + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Trigger repo + uses: convictional/trigger-workflow-and-wait@v1.6.1 + with: + owner: EatPlace + repo: deploy + ref: prod + github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + workflow_file_name: deploy-runners.yml + client_payload: '{}' + wait_interval: 11 + trigger_workflow: true + wait_workflow: true + propagate_failure: true