Files
thc-webhook/.gitea/workflows/build-container.yaml
zwitschi 983c7cde9d
Some checks failed
Test Application / test (push) Successful in 41s
Build and Deploy Docker Container / build-and-deploy (push) Failing after 26s
refactor: remove Docker image verification and cleanup steps from build-container workflow
2025-10-05 16:08:43 +02:00

44 lines
1.4 KiB
YAML

name: Build and Deploy Docker Container
run-name: ${{ gitea.actor }} runs docker deployment
# run this workflow on push to main branch
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v5
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Registry
uses: docker/login-action@v3
with:
registry: git.allucanget.biz
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: git.allucanget.biz/${{ secrets.REGISTRY_USERNAME }}/thc-webhook:latest
- name: Deploy to Portainer
uses: appleboy/ssh-action@v0.1.7
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USER }}
key: ${{ secrets.SERVER_SSH_KEY }}
script: |
docker pull git.allucanget.biz/${{ secrets.REGISTRY_USERNAME }}/thc-webhook:latest
docker stop thc-webhook || true
docker rm thc-webhook || true
docker run -d --name thc-webhook -e DISCORD_WEBHOOK_URL=${{ secrets.DISCORD_WEBHOOK_URL }} -p 8080:8080 git.allucanget.biz/${{ secrets.REGISTRY_USERNAME }}/thc-webhook:latest