Skip to content

test.txt: update to pillow 12.1.1 #130

test.txt: update to pillow 12.1.1

test.txt: update to pillow 12.1.1 #130

Workflow file for this run

---
name: Docker
on:
workflow_dispatch:
push:
branches:
- develop
paths:
- "**"
pull_request:
branches:
- develop
release:
types: [published]
env:
IMAGE_NAME: ${{ github.repository }}
jobs:
build_n_push:
runs-on: ubuntu-latest
steps:
- name: Checkout Git
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Determine Docker info from repo
id: meta
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
with:
images: ${{ env.IMAGE_NAME }}
- name: Log the image labels
run: echo '${{ steps.meta.outputs.labels }}'
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
with:
username: ${{ secrets.GADOCKERSVC_USERNAME }}
password: ${{ secrets.GADOCKERSVC_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
with:
context: .
builder: ${{ steps.buildx.outputs.name }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
ENVIRONMENT=deployment