-
Notifications
You must be signed in to change notification settings - Fork 6
57 lines (49 loc) · 1.56 KB
/
merge.yaml
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
56
57
name: Merge PR
on:
pull_request:
types:
- closed
branches:
- main
concurrency:
group: merge
cancel-in-progress: false
jobs:
merge:
name: Merge PR
runs-on: self-hosted-hoprnet-small
if: github.event.pull_request.merged == true
strategy:
matrix:
project:
- discovery-platform
- rpc-server
- availability-monitor
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup GCP
id: gcp
uses: hoprnet/hopr-workflows/actions/setup-gcp@master
with:
google-credentials: ${{ secrets.GOOGLE_HOPRASSOCIATION_CREDENTIALS_REGISTRY }}
login-artifact-registry: 'true'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: kubernetes
- name: Build and push docker image
uses: docker/build-push-action@v6
with:
push: true
file: "./apps/${{ matrix.project }}/Dockerfile"
tags: |
${{ vars.DOCKER_IMAGE_REGISTRY }}/${{ matrix.project }}:staging
${{ vars.DOCKER_IMAGE_REGISTRY }}/${{ matrix.project }}:latest
deploy:
name: Deploy staging
needs: merge
uses: ./.github/workflows/deploy.yaml
with:
branch: ${{ github.event.pull_request.head.ref }}
secrets: inherit