Skip to content

fix(deps): update dependency @emotion/react to v11.11.3 #25

fix(deps): update dependency @emotion/react to v11.11.3

fix(deps): update dependency @emotion/react to v11.11.3 #25

Workflow file for this run

name: CI/CD to Haenu Cluster
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: hyeonwoo5342/music.c6h12o6.kr:${{ github.run_number }}
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout GitOps repository
uses: actions/checkout@v3
with:
repository: dokdo2013/haenu-cluster
token: ${{ secrets.GITOPS_TOKEN }}
path: gitops
- name: Update deployment tag in GitOps repo
run: |
APP_NAME="music-c6h12o6-kr"
IMAGE_NAME="music.c6h12o6.kr"
cd gitops/apps/haenu/${APP_NAME}
sed -i "s|image: hyeonwoo5342/${IMAGE_NAME}:.*|image: hyeonwoo5342/${IMAGE_NAME}:${{ github.run_number }}|g" deployment.yaml
git config user.name "dokdo2013"
git config user.email "hyeonwoo5342@gmail.com"
git add .
git commit -m "feat(${APP_NAME}): Build and deploy new commit ${{ github.run_number }}"
git push