Deploy Demo Web App #1
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: Deploy Demo Web App | |
on: | |
workflow_run: | |
workflows: ["Docker Nightly", "Docker Release"] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
deploy: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- url: "https://demo.nextorders.space" | |
environment: "Production Demo Web App" | |
deployment: "web-app" | |
runs-on: ubuntu-latest | |
permissions: | |
deployments: write | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: chrnorm/deployment-action@v2 | |
name: Create GitHub deployment | |
id: deployment | |
with: | |
token: '${{ github.token }}' | |
environment-url: ${{ matrix.url }} | |
environment: ${{ matrix.environment }} | |
- name: Connect to k8s cluster and restart deployment | |
uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: rollout restart deployment/${{ matrix.deployment }} -n food-demo | |
- name: Update deployment status (success) | |
if: success() | |
uses: chrnorm/deployment-status@v2 | |
with: | |
token: '${{ github.token }}' | |
environment-url: ${{ steps.deployment.outputs.environment_url }} | |
deployment-id: ${{ steps.deployment.outputs.deployment_id }} | |
state: 'success' | |
- name: Update deployment status (failure) | |
if: failure() | |
uses: chrnorm/deployment-status@v2 | |
with: | |
token: '${{ github.token }}' | |
environment-url: ${{ steps.deployment.outputs.environment_url }} | |
deployment-id: ${{ steps.deployment.outputs.deployment_id }} | |
state: 'failure' |