mirror of
https://github.com/telegramdesktop/tdesktop
synced 2024-12-13 01:44:50 +00:00
d28b9f10b4
Bumps [jlumbroso/free-disk-space](https://github.com/jlumbroso/free-disk-space) from 1.3.0 to 1.3.1.
- [Release notes](https://github.com/jlumbroso/free-disk-space/releases)
- [Commits](f68fdb76e2...54081f1387
)
---
updated-dependencies:
- dependency-name: jlumbroso/free-disk-space
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
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
|
|
|
|
env:
|
|
IMAGE_TAG: ghcr.io/${{ github.repository }}/centos_env:latest
|
|
|
|
steps:
|
|
- name: Clone.
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: First set up.
|
|
run: |
|
|
sudo apt update
|
|
curl -sSL https://install.python-poetry.org | python3 -
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
|
|
|
|
- name: Free up some disk space.
|
|
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
|
|
|
|
- name: Docker image build.
|
|
run: |
|
|
cd Telegram/build/docker/centos_env
|
|
poetry install
|
|
DEBUG= LTO= poetry run gen_dockerfile | DOCKER_BUILDKIT=1 docker build -t $IMAGE_TAG -
|
|
|
|
- name: Push the Docker image.
|
|
if: ${{ github.ref_name == github.event.repository.default_branch }}
|
|
run: docker push $IMAGE_TAG
|