-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (38 loc) · 973 Bytes
/
deploy.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
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v5
with:
context: .
tags: docswebsite:latest
outputs: type=docker,dest=/tmp/docswebsite.tar
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: docswebsite
path: /tmp/docswebsite.tar
use:
runs-on: self-hosted
needs: build
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: docswebsite
path: /tmp
- name: Load image
run: |
docker load --input /tmp/docswebsite.tar
docker image ls -a
cd /home/whes1015
docker compose up -d