forked from alonitac/NetflixFrontend
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.47 KB
/
infra-frontend.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
name: NetflixFrontend stack build-deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker images
run: |
DOCKER_IMAGE_TAG=frontend-v0.0.3-${{ github.run_number }}
docker buildx build --platform linux/amd64,linux/arm64 -t davidhei/netflix:${DOCKER_IMAGE_TAG} --push .
- name: Checkout infrastructure repo
uses: actions/checkout@v3
with:
repository: davidhei2023/NetflixInfra
token: ${{ secrets.REPO_TOKEN }}
path: ./NetflixInfra
- name: Update YAML manifests
run: |
cd ./NetflixInfra/NetflixFrontend
sed -i 's|image: .*$|image: davidhei/netflix:frontend-v0.0.3-${{ github.run_number }}|' frontend.yaml
- name: Commit and Push changes
run: |
cd ./NetflixInfra
git config user.email "${{ secrets.GIT_USER_EMAIL }}"
git config user.name "${{ secrets.GIT_USER_NAME }}"
git add .
git commit -m "Update NetflixFrontend image to frontend-v0.0.3-${{ github.run_number }}"
git push