-
Notifications
You must be signed in to change notification settings - Fork 14
92 lines (80 loc) · 2.55 KB
/
publish.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Publish Release
on:
workflow_dispatch:
push:
tags:
- v**
jobs:
pre-deploy-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --no-interaction --no-ansi
- name: Test with pytest
run: poetry run pytest tests
docker:
needs: pre-deploy-test
runs-on: ubuntu-latest
steps:
- name: Prepare
id: prep
run: |
DOCKER_IMAGE=${{ secrets.DOCKER_USERNAME }}/${GITHUB_REPOSITORY#*/}
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/v}
TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:latest"
fi
echo $TAGS
echo ::set-output name=tags::${TAGS}
- 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 DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/amd64/v3,linux/arm64
push: true
tags: ${{ steps.prep.outputs.tags }}
verify:
needs: docker
runs-on: ubuntu-latest
steps:
- name: Pull and Test Container
env:
DOCKER_IMAGE: daya0576/beaverhabits
VERSION: latest
run: |
docker pull ${DOCKER_IMAGE}:${VERSION}
docker run -d --name test_container ${DOCKER_IMAGE}:${VERSION}
sleep 3
CONTAINER_OUTPUT=$(docker logs test_container)
# Check if the container is still running
CONTAINER_STATUS=$(docker inspect -f '{{.State.Running}}' test_container)
if [ "${CONTAINER_STATUS}" != "true" ]; then
echo "The container is not running!"
exit 1
fi
# Check if the "Error" string is present in the container output
if echo "${CONTAINER_OUTPUT}" | grep -i -q "Error"; then
echo "Error found in container output!"
echo "${CONTAINER_OUTPUT}"
exit 1
fi
docker stop test_container
docker rm test_container