2020-10-30 11:14:12 +00:00
|
|
|
name: Docker.
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/docker.yml'
|
|
|
|
- 'Telegram/build/docker/centos_env/**'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/docker.yml'
|
|
|
|
- 'Telegram/build/docker/centos_env/**'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
name: Ubuntu
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2022-04-18 12:33:40 +00:00
|
|
|
env:
|
|
|
|
IMAGE_TAG: ghcr.io/${{ github.repository }}/centos_env:latest
|
|
|
|
|
2020-10-30 11:14:12 +00:00
|
|
|
steps:
|
|
|
|
- name: Clone.
|
2024-05-06 05:47:20 +00:00
|
|
|
uses: actions/checkout@v4.1.4
|
2020-10-30 11:14:12 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2022-06-28 11:32:29 +00:00
|
|
|
- name: First set up.
|
2023-06-17 12:48:22 +00:00
|
|
|
run: |
|
|
|
|
sudo apt update
|
|
|
|
curl -sSL https://install.python-poetry.org | python3 -
|
2023-12-15 01:20:16 +00:00
|
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
|
2023-06-17 12:48:22 +00:00
|
|
|
|
|
|
|
- name: Free up some disk space.
|
2023-09-29 16:38:00 +00:00
|
|
|
uses: jlumbroso/free-disk-space@f68fdb76e2ea636224182cfb7377ff9a1708f9b8
|
2022-06-28 11:32:29 +00:00
|
|
|
|
2020-10-30 11:14:12 +00:00
|
|
|
- name: Docker image build.
|
2022-06-28 11:32:29 +00:00
|
|
|
run: |
|
|
|
|
cd Telegram/build/docker/centos_env
|
|
|
|
poetry install
|
2022-11-28 12:04:26 +00:00
|
|
|
DEBUG= LTO= poetry run gen_dockerfile | DOCKER_BUILDKIT=1 docker build -t $IMAGE_TAG -
|
2022-09-01 12:57:11 +00:00
|
|
|
|
2022-04-18 12:33:40 +00:00
|
|
|
- name: Push the Docker image.
|
2022-04-19 05:01:36 +00:00
|
|
|
if: ${{ github.ref_name == github.event.repository.default_branch }}
|
2023-12-15 01:20:16 +00:00
|
|
|
run: docker push $IMAGE_TAG
|