Merge pull request #68 from ChristianLempa/github-actions

Add GitHub Actions to boilerplates
This commit is contained in:
Christian Lempa 2023-04-26 17:02:53 +02:00 committed by GitHub
commit 37fb7a02ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,22 @@
name: Kubernetes Deploy
on:
push:
branches:
- main
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }}
jobs:
deploy:
runs-on: your-runner
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Deploy Manifest
uses: actions-hub/kubectl@master
with:
args: apply -f your-manifest.yml

View File

@ -0,0 +1,26 @@
name: copy config files to remote machine
on:
push:
branches:
- main
paths:
- 'config/**'
jobs:
deploy:
runs-on: your-runner
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Upload new Config Files
uses: appleboy/scp-action@master
with:
username: your-username
host: your-host
key: ${{ secrets.your-private-ssh-key }}
source: './config/*'
target: '/target/path/'
strip_components: 1 # remove the top level directory

View File

@ -0,0 +1,31 @@
name: Update Docker Compose File
on:
push:
branches:
- main
paths:
- 'docker-compose.yml'
env:
YOUR-ENV-SECRET: ${{ secrets.YOUR-ENV-SECRET }}
YOUR-ENV-VAR: ${{ vars.YOUR-ENV-VAR }}
jobs:
deploy:
runs-on: your-runner
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Restart Docker Container
uses: fifsky/ssh-action@master
with:
user: your-user
host: your-host
key: ${{ secrets.your-private-ssh-key }}
command: |
cd your-compose-project-directory
export YOUR-ENV-SECRET=${{ secrets.YOUR-ENV-SECRET }}
export YOUR-ENV-VAR=${{ vars.YOUR-ENV-VAR }}
docker-compose up -d --force-recreate