Qt 6.8.0-rc1 -> 6.8.0 #1033
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |