chore(deps): update python:3.10-slim docker digest to a636f5a (#142) #595
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(Docker) | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
env: | |
IMAGE: 'ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.sha }} | |
cancel-in-progress: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
- name: Docker metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.IMAGE }} | |
tags: | | |
type=semver,pattern=v{{version}} | |
type=ref,event=branch | |
type=ref,event=branch,suffix=-{{ sha }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Final Docker Image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./ | |
provenance: false | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
github-token: ${{ github.token }} |