-
Notifications
You must be signed in to change notification settings - Fork 8
44 lines (35 loc) · 1.07 KB
/
Copy pathcd.yml
File metadata and controls
44 lines (35 loc) · 1.07 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
name: CD
## this workflow is for deployment to your actual servers which must be configured
## in the runners section
on:
workflow_dispatch:
inputs:
environment:
description: 'Deployment environment'
required: true
default: 'dev'
type: choice
options:
- dev
- production
env:
ghcr_repo_addr: ghcr.io/shayan-ghani/container-exporter:latest
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: deploy from ghcr
run: |
IMAGE=${{env.ghcr_repo_addr}} docker compose -f ./container-exporter.yml up -d