-
-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (47 loc) · 1.48 KB
/
build-poller.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: docker build Thaliak.Service.Poller
on:
workflow_dispatch:
push:
branches:
- 'main'
paths:
- '.github/workflows/**'
- 'Thaliak.Common.Database/**'
- 'Thaliak.Service.Poller/**'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Thaliak.Service.Poller/Dockerfile
push: true
tags: ghcr.io/crystallinetools/thaliak-poller:latest
- name: Set up WireGuard
uses: egor-tensin/[email protected]
with:
endpoint: '${{ secrets.WG_ENDPOINT }}'
endpoint_public_key: '${{ secrets.WG_ENDPOINT_PUBKEY }}'
ips: '${{ secrets.WG_ADDRESS }}'
allowed_ips: '${{ secrets.WG_ALLOWED_IPS }}'
private_key: '${{ secrets.WG_PRIVKEY }}'
preshared_key: '${{ secrets.WG_SHAREDKEY }}'
- name: Deploy to production server
uses: appleboy/[email protected]
with:
host: '${{ secrets.REMOTE_HOST }}'
username: '${{ secrets.REMOTE_USER }}'
key: '${{ secrets.REMOTE_SSH_KEY }}'
script: deploy poller