[ci] feat: use correct names
All checks were successful
Build and Publish / Build (push) Successful in 11s
Build and Publish / Deployment (push) Successful in 4s

This commit is contained in:
Simon Cornet 2024-09-06 13:56:46 +02:00
parent 46171920ea
commit fc48ea61bb

View File

@ -37,25 +37,25 @@ jobs:
tags: 'cr.simoncor.net/siempie/start-simoncor-net:latest,cr.simoncor.net/siempie/start-simoncor-net:${{ gitea.sha }}' tags: 'cr.simoncor.net/siempie/start-simoncor-net:latest,cr.simoncor.net/siempie/start-simoncor-net:${{ gitea.sha }}'
# ansible deployment # kubernetes deployment
Deployment: Deployment:
runs-on: 'ubuntu-latest' runs-on: 'ubuntu-latest'
needs: 'Build' needs: 'Build'
steps: steps:
# name: Build # name: Build
- name: 'Ansible deployment' - name: 'Kubernetes deployment'
uses: 'appleboy/ssh-action@v1.0.3' uses: 'appleboy/ssh-action@v1.0.3'
with: with:
# bastion # bastion
proxy_host: 'bastion.siempie.com' proxy_host: 'wireguard.do.siempie.com'
proxy_port: '22' proxy_port: '22'
proxy_username: ${{ secrets.USERNAME }} proxy_username: ${{ secrets.USERNAME }}
proxy_key: ${{ secrets.SSHKEY }} proxy_key: ${{ secrets.SSHKEY }}
# ansible management # kubernetes management
host: 'ansible.siempie.internal' host: 'mgmt01.infra.vpn.mirahsimon.us'
port: '22' port: '22'
username: ${{ secrets.USERNAME }} username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSHKEY }} key: ${{ secrets.SSHKEY }}