CD #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CD' | |
on: | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'Tag to change to' | |
default: 'latest' | |
required: false | |
type: string | |
env: | |
IMAGE_NAME: registry.digitalocean.com/cutu2024/cutu2024-backend | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set new image tag | |
uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: set image deployment/cutu2024-backend cutu2024-backend=${{ env.IMAGE_NAME }}:${{ inputs.tag }} | |
- name: Rollout new deployment | |
uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: rollout restart deployment/cutu2024-backend |