Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
TimofeyTst committed Oct 8, 2023
1 parent e810cba commit 168a957
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
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

0 comments on commit 168a957

Please sign in to comment.