-
Notifications
You must be signed in to change notification settings - Fork 11
58 lines (52 loc) · 1.64 KB
/
Copy pathdocker.yml
File metadata and controls
58 lines (52 loc) · 1.64 KB
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
55
56
57
58
name: Build docker images
on:
push:
branches:
- "master"
tags:
- "*"
paths-ignore:
- "**.md"
- "*.yml"
permissions:
contents: read
packages: write
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push latest images
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64, linux/arm64
push: true
provenance: false
sbom: false
build-args: |
NEXT_PUBLIC_PRIVY_APP_ID=${{ secrets.NEXT_PUBLIC_PRIVY_APP_ID }}
NEXT_PUBLIC_UMAMI_WEBSITE_ID=${{ secrets.NEXT_PUBLIC_UMAMI_WEBSITE_ID }}
tags: |
ghcr.io/${{ github.event.repository.full_name }}:latest
- name: Deploy to server on master branch
uses: appleboy/ssh-action@master
# Deploy only on master branch
if: github.ref == 'refs/heads/master'
with:
host: ${{ secrets.DEPLOY_IP }}
username: root
key: ${{ secrets.DEPLOY_KEY }}
script: |
cd ${{ secrets.DEPLOY_PATH }}
docker login ghcr.io -u ${{ github.repository_owner }} -p ${{ secrets.GITHUB_TOKEN }}
docker pull ghcr.io/${{ github.event.repository.full_name }}:latest && docker-compose up -d