2024-06-26 19:52:11 +02:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "main"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
|
|
registry:
|
|
|
|
image: registry:2
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Docker for QEMU
|
|
|
|
uses: https://github.com/papodaca/install-docker-action@main
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to the Container registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: code.f2n.me
|
|
|
|
username: ${{ secrets.MY_FORGEJO_USERNAME }}
|
|
|
|
password: ${{ secrets.MY_FORGEJO_TOKEN }}
|
|
|
|
- name: Build and push to local registry
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
tags: code.f2n.me/finn/matrix-bot-invitation-mailer:latest
|
|
|
|
- name: Inspect
|
|
|
|
run: |
|
|
|
|
docker buildx imagetools inspect code.f2n.me/finn/matrix-bot-invitation-mailer:latest
|
2024-07-01 21:20:42 +02:00
|
|
|
|
2024-06-30 20:41:51 +02:00
|
|
|
- name: Deploy
|
2024-07-01 21:27:05 +02:00
|
|
|
uses: https://github.com/tristiisch/astappiev/docker-compose-remote-action@master
|
2024-06-30 20:41:51 +02:00
|
|
|
with:
|
2024-07-01 21:20:42 +02:00
|
|
|
ssh_host: home.finnchristiansen.de
|
|
|
|
ssh_port: 44022
|
|
|
|
ssh_user: deploy
|
2024-06-30 20:41:51 +02:00
|
|
|
ssh_private_key: ${{ secrets.DOCKER_RPI4_SSH_PRIVATE_KEY }}
|
2024-07-01 21:20:42 +02:00
|
|
|
ssh_host_public_key: ${{ secrets.DOCKER_RPI4_SSH_PUBLIC_KEY }}
|
|
|
|
workspace: /opt/stacks/matrix-bot-invitation-mailer
|
|
|
|
docker_compose_filename: compose.yml
|