Added gitea-actions workflow
Build Docker and Deploy / Build Docker Container (push) Failing after 2s Details
Build Docker and Deploy / Deploy to Server (push) Has been skipped Details

This commit is contained in:
Mike Schwörer 2023-08-12 11:52:02 +02:00
parent 4773800f23
commit bce2a725a9
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
# https://docs.gitea.com/next/usage/actions/quickstart
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/learn-github-actions/contexts#github-context
name: Build Docker and Deploy
run-name: Build & Deploy ${{ gitea.ref }} on ${{ gitea.actor }}
on:
push:
branches: ['master']
jobs:
build_job:
name: Build Docker Container
runs-on: bfb-cicd-latest
steps:
- run: echo -n "${{ secrets.DOCKER_REG_PASS }}" | docker login registry.blackforestbytes.com -u docker --password-stdin
- name: Check out code
uses: actions/checkout@v3
- run: make clean
- run: make build-docker
- run: make push-docker
deploy_job:
name: Deploy to Server
needs: [build_job]
runs-on: ubuntu-latest
steps:
- name: Execute deploy on remote (via ssh)
uses: appleboy/ssh-action@v1.0.0
with:
host: simplecloudnotifier.de
username: bfb-deploy-bot
port: 4477
key: "${{ secrets.SSH_KEY_BFBDEPLOYBOT }}"
script: ipinfo
#script: cd /var/docker/deploy-scripts/simplecloudnotifier && ./deploy.sh master "${{ gitea.sha }}" || exit 1