-
Notifications
You must be signed in to change notification settings - Fork 233
72 lines (60 loc) · 1.85 KB
/
docker-build-push.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Build and Push Docker Image
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
packages: write
env:
REGISTRY: ghcr.io
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docker image
uses: docker/build-push-action@v6
with:
context: .
load: true
platforms: linux/amd64
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/hamsterkombatbot:latest
- name: Create .env file
run: |
echo "API_ID=12345" > .env
echo "API_HASH=12345" >> .env
- name: Run container
run: |
docker compose up -d
docker compose ps
- name: Check container status
run: |
container_status=$(docker compose ps --status running --format "table {{.Name}}\t{{.Image}}\t{{.Command}}\t{{.Service}}\t{{.CreatedAt}}\t{{.Status}}\t{{.Ports}}")
echo "$container_status"
if echo "$container_status" | grep -q "Up"; then
echo "Container is running. Proceeding."
else
echo "Container is not running. Exiting."
exit 1
fi
- name: Push Docker image
if: success()
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/hamsterkombatbot:latest