Skip to content

Bump docker from 24.0 to 26.0 #75

Bump docker from 24.0 to 26.0

Bump docker from 24.0 to 26.0 #75

Workflow file for this run

name: test
on:
push:
branches:
- master
tags:
- '*'
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Build docker:
- name: Build named dockerfile
run: docker build . --tag wemake-services/wemake-dind:latest
- name: Test docker build
run: |
docker run \
-v $PWD/test.sh:/build/test.sh \
--rm wemake-services/wemake-dind:latest \
bash /build/test.sh
deploy:
if: "github.event_name == 'push' && github.repository == 'wemake-services/wemake-dind'"
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: wemakeservices/wemake-dind
tags: |
# Produce versioned docker tag on git tag:
type=ref,event=tag
# Set latest tag for default branch:
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}