Commit 203b352d authored by Simon Cornet's avatar Simon Cornet
Browse files

style: use double quotes

parent 2cd7d4ad
Loading
Loading
Loading
Loading
+9 −12
Original line number Diff line number Diff line
---

# generic
name: 'Kubernetes Deployment'
name: "Kubernetes Deployment"
on:
  push:
    branches:
      - 'main'
      - "main"

# jobs
jobs:

  # kubernetes deployment
  Deployment:
    runs-on: 'ubuntu-latest'
    runs-on: "ubuntu-latest"
    steps:

      # name: Build
      - name: 'Kubernetes deployment'
        uses: 'appleboy/ssh-action@v1.0.3'
      - name: "Kubernetes deployment"
        uses: "appleboy/ssh-action@v1.0.3"
        with:

          # bastion
          proxy_host: 'wireguard.do.siempie.com'
          proxy_port: '22'
          proxy_host: "wireguard.do.siempie.com"
          proxy_port: "22"
          proxy_username: ${{ secrets.USERNAME }}
          proxy_key: ${{ secrets.SSHKEY }}

          # kubernetes management
          host: 'mgmt01.infra.vpn.mirahsimon.us'
          port: '22'
          host: "mgmt01.infra.vpn.mirahsimon.us"
          port: "22"
          username: ${{ secrets.USERNAME }}
          key: ${{ secrets.SSHKEY }}

.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
.ansible