Update dependency docker/docker to v27.3.1 #106
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: Release | |
on: | |
pull_request_target: | |
types: [ closed ] | |
jobs: | |
release: | |
name: release after merging ${{ github.head_ref }} | |
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'renovate/') && endsWith(github.head_ref, '-dind-image') | |
runs-on: ubuntu-latest | |
env: | |
FORCE_COLOR: 1 | |
EARTHLY_CONVERSION_PARALLELISM: "5" | |
EARTHLY_TOKEN: "${{ secrets.EARTHLY_TOKEN }}" | |
EARTHLY_INSTALL_ID: "earthly-dind-githubactions" | |
steps: | |
- uses: earthly/actions/setup-earthly@v1 | |
with: | |
version: v0.8.15 | |
- uses: actions/checkout@v4 | |
- name: Docker login (non fork only) | |
run: |- | |
docker login --username "${{ secrets.DOCKERHUB_USERNAME }}" --password "${{ secrets.DOCKERHUB_TOKEN }}" | |
docker login registry-1.docker.io.mirror.corp.earthly.dev --username "${{ secrets.DOCKERHUB_MIRROR_USERNAME }}" --password "${{ secrets.DOCKERHUB_MIRROR_PASSWORD }}" | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
- name: Configure Earthly to use mirror (non fork only) | |
run: |- | |
earthly config global.buildkit_additional_config "'[registry.\"docker.io\"] | |
mirrors = [\"registry-1.docker.io.mirror.corp.earthly.dev\"]'" | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
- name: Build & Push image | |
run: earthly --ci -P --push --org earthly-technologies --satellite dind +release --RENOVATE_BRANCH=${{github.head_ref}} |