Skip to content

update pyyaml to 6.0.1 #30

update pyyaml to 6.0.1

update pyyaml to 6.0.1 #30

Workflow file for this run

---
name: "Build Docker images"
on:
push:
branches: ['**']
release:
types: [released]
env:
IMAGE_NAME: "${{ secrets.DOCKER_ORG }}/nansat_base"
TAG: "${{ github.ref_type == 'tag' && github.ref_name || 'tmp' }}"
jobs:
build_docker_images:
runs-on: 'ubuntu-20.04'
env:
latest: ${{ matrix.python_version == '3.11' && 'true' || '' }}
strategy:
fail-fast: false
matrix:
python_version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-python${{ matrix.python_version }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-python${{ matrix.python_version }}-
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Build docker image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
build-args: 'PYTHON_VERSION=${{ matrix.python_version }}'
push: ${{ github.ref_type == 'tag' }}
tags: |
${{ env.IMAGE_NAME }}:latest-python${{ matrix.python_version }}
${{ env.IMAGE_NAME }}:${{ github.ref_name }}-python${{ matrix.python_version }}
${{ env.latest && format('{0}:{1}', env.IMAGE_NAME, github.ref_name) || '' }}
${{ env.latest && format('{0}:latest', env.IMAGE_NAME) || '' }}
cache-from: |
type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
...