Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

Commit

Permalink
Merge pull request #245 from upanasiuk/docker_build_image
Browse files Browse the repository at this point in the history
Github workflows build docker image
  • Loading branch information
shamhi authored Oct 1, 2024
2 parents 687f82a + 961bcf0 commit fddebe7
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 }}/tapswapbot: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 }}/tapswapbot:latest

0 comments on commit fddebe7

Please sign in to comment.