This repository was archived by the owner on Jul 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
53 lines (44 loc) · 1.43 KB
/
Copy pathpr_build.yml
File metadata and controls
53 lines (44 loc) · 1.43 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
name: Build and Test
on:
pull_request:
branches:
- master
jobs:
build-docker-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up QEMU for multi-platform support
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.TOKEN_GITHUB }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
ghcr.io/erfjab/servermanagerbot:pr-${{ github.event.pull_request.number }}
- name: Print Success Message
if: success()
run: |
echo "✅ Docker Image built successfully!"
echo "You can test it using the following command:"
echo "docker run -it --rm ghcr.io/erfjab/servermanagerbot:pr-${{ github.event.pull_request.number }}"
- name: Print Failure Message
if: failure()
run: |
echo "❌ Docker Image build failed! Please check the logs for more details."