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.
|
2022-11-07 12:32:59 +00:00
|
|
|
uses: actions/checkout@v3.1.0
|
2020-10-30 11:14:12 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2022-06-28 11:32:29 +00:00
|
|
|
- name: First set up.
|
2022-09-04 03:32:38 +00:00
|
|
|
run: curl -sSL https://install.python-poetry.org | python3 -
|
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 }}
|
2022-04-18 12:33:40 +00:00
|
|
|
run: |
|
|
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
|
|
|
|
docker push $IMAGE_TAG
|