-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (48 loc) · 1.44 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Publish Web UI Docker Image to Docker Hub
on:
workflow_dispatch:
pull_request:
push:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- 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: Get branch name
uses: nelonoel/[email protected]
- run: echo ${BRANCH_NAME}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
file: Dockerfile.prod
tags: timofeytst/eat-place:${BRANCH_NAME}
deploy:
needs: build
if: github.ref == 'refs/heads/prod'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Trigger repo
uses: convictional/[email protected]
with:
owner: eat-place
repo: deploy
ref: prod
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
workflow_file_name: deploy-runners.yaml
client_payload: '{}'
wait_interval: 11
trigger_workflow: true
wait_workflow: true
propagate_failure: true