Deploy App #154
Workflow file for this run
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 App | |
on: | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: "Publish to environment" | |
required: true | |
default: "internal" | |
type: choice | |
options: | |
- internal | |
- alpha | |
- production | |
- cluster-core | |
jobs: | |
information: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >>$GITHUB_OUTPUT | |
id: extract_branch | |
- name: Adding markdown | |
run: | | |
echo ' | |
🚀 Deploying to **${{ inputs.environment }}** from **${{ steps.extract_branch.outputs.branch }}** | |
' >> $GITHUB_STEP_SUMMARY | |
deploy: | |
runs-on: ubuntu-latest | |
environment: DigitalOcean | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: yarn build:k8s:${{ inputs.environment }} | |
- uses: imranismail/setup-kustomize@v2 | |
- name: Install doctl | |
uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITAL_OCEAT_TOKEN }} | |
- name: Save DigitalOcean kubeconfig with short-lived credentials | |
run: doctl kubernetes cluster kubeconfig save --expiry-seconds 600 ${{ secrets.DIGITALOCEAN_CLUSTER_ID }} | |
- uses: azure/setup-kubectl@v4 | |
- name: Show diff | |
run: kubectl diff -f ./${{ inputs.environment }}.yaml | grep -e "^\+ " -e "^- " | |
- name: Deploy | |
run: kubectl apply -f ./${{ inputs.environment }}.yaml -n democracy-${{ inputs.environment }} |