-
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (49 loc) · 1.42 KB
/
deploy-to-production.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
49
50
51
52
53
54
name: 'Deploy to production'
env:
FONTAWESOME_PACKAGE_TOKEN: ${{ secrets.FONTAWESOME_PACKAGE_TOKEN }}
REGISTRY: ghcr.io
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
buildandpush:
name: 'Build and push docker images'
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v4'
with:
fetch-depth: 0
- name: Set up Moon Toolchain
uses: 'moonrepo/setup-toolchain@v0'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
use: linux/arm64,linux/amd64
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
run: 'moon ci :production-docker-push'
deploy:
name: 'Deploy to VPS'
runs-on: ubuntu-latest
needs: buildandpush
environment: prod-manual
steps:
- uses: 'actions/checkout@v4'
with:
fetch-depth: 0
- name: Set up Moon Toolchain
uses: 'moonrepo/setup-toolchain@v0'
- name: 'Redeploy from Dokploy on VPS'
env:
DOKPLOY_API_TOKEN: ${{ secrets.DOKPLOY_API_TOKEN }}
DOKPLOY_API_URL: ${{ secrets.DOKPLOY_API_URL }}
run: 'moon ci :production-dokploy-compose-deploy'