This repository has been archived on 2024-10-10. You can view files and clone it, but cannot push or open issues or pull requests.
roundcube/.gitea/workflows/build.yaml
Simon Cornet ffca7647e1
All checks were successful
Build and Publish / Build (push) Successful in 30s
Build and Publish / Deployment (push) Successful in 45s
[ci] style: prettify job name
2024-07-04 16:07:46 +02:00

67 lines
1.5 KiB
YAML

---
# generic
name: 'Build and Publish'
on:
push:
branches:
- 'master'
# build job
jobs:
# build container
Build:
runs-on: 'ubuntu-latest'
steps:
# checkout code
- name: 'Clone repo'
uses: 'actions/checkout@v4'
# login to cr.simoncor.net
- name: 'Login to cr.simoncor.net'
uses: 'docker/login-action@v3'
with:
registry: 'cr.simoncor.net'
username: ${{ vars.REGISTER_USERNAME }}
password: ${{ vars.REGISTER_PASSWORD }}
# build and publish container
- name: 'Build and Publish'
uses: 'docker/build-push-action@v6'
with:
context: '.'
file: 'Dockerfile.linux.amd64'
push: true
tags: |
cr.simoncor.net/siempie/roundcube:latest
cr.simoncor.net/siempie/roundcube:v1
# ansible deployment
Deployment:
runs-on: 'ubuntu-latest'
steps:
# ansible deployment
- name: 'Ansible deployment'
uses: 'appleboy/ssh-action@v1.0.3'
with:
# bastion
proxy_host: 'siempie.com'
proxy_port: '22'
proxy_username: ${{ secrets.USERNAME }}
proxy_key: ${{ secrets.SSHKEY }}
# ansible management
host: 'ansible.siempie.internal'
port: '22'
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSHKEY }}
# command
script: |
sudo /usr/local/bin/ansible-playbook /etc/ansible/playbooks/production/roundcube.yaml