Skip to content

chore(deps): update docker.io/bitnami/kubectl:1.31.0 docker digest to 7779e58 #27

chore(deps): update docker.io/bitnami/kubectl:1.31.0 docker digest to 7779e58

chore(deps): update docker.io/bitnami/kubectl:1.31.0 docker digest to 7779e58 #27

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Docker Release
on:
workflow_dispatch:
inputs:
dry-run:
description: Dry Run
default: true
required: false
type: boolean
custom-tag:
type: string
description: Additional custom tags for the image.
required: false
pull_request:
branches: ["main"]
paths:
- .github/workflows/docker-release.yaml
- Dockerfile
- requirements.txt
push:
tags: ["*"]
jobs:
release:
uses: mirceanton/reusable-workflows/.github/workflows/docker-release.yaml@feb7161818c3ae82cd4ea25c606c1feefa19643d
secrets: inherit
with:
image: ghcr.io/${{ github.repository }}
platforms: linux/amd64
tags: |
type=ref,event=tag
type=ref,event=pr
${{ inputs.custom-tag }}
context: .
dockerfile: ./Dockerfile
dry-run: "${{ inputs.dry-run == true }}"