Skip to content

Infra.yaml test #3

Infra.yaml test #3 #3

Workflow file for this run

name: NetflixFrontend CI/CD
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build_and_push_image:
runs-on: ubuntu-latest
name: Build and Push Docker Image
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 image
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
update_infrastructure:
runs-on: ubuntu-latest
name: Update Infrastructure Repository
steps:
- name: Checkout main repository
uses: actions/checkout@v3
- 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: Configure Git
run: |
git config user.email "${{ secrets.GIT_USER_EMAIL }}"
git config user.name "${{ secrets.GIT_USER_NAME }}"
- name: Commit and Push changes
run: |
cd ./NetflixInfra
git add .
git commit -m "Update NetflixFrontend image to frontend-v0.0.3-${{ github.run_number }}"
git push