Skip to content

Pandas ~> v2.1.3

Pandas ~> v2.1.3 #53

Workflow file for this run

name: push
on:
push:
tags:
- "*"
jobs:
build-push-multiarch:
runs-on: ubuntu-latest
strategy:
matrix:
file:
- Dockerfile
- Dockerfile.jupyter
- Dockerfile.slim
steps:
- uses: actions/checkout@v3
- uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: lint ${{ matrix.file }}
uses: ./.github/actions/lint
with:
file: ${{ matrix.file }}
- name: build ${{ matrix.file }}
uses: ./.github/actions/build
with:
file: ${{ matrix.file }}
push: true
build-push-amd64:
runs-on: ubuntu-latest
strategy:
matrix:
file:
- Dockerfile.alpine
steps:
- uses: actions/checkout@v3
- uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: lint ${{ matrix.file }}
uses: ./.github/actions/lint
with:
file: ${{ matrix.file }}
- name: build ${{ matrix.file }}
uses: ./.github/actions/build
with:
file: ${{ matrix.file }}
platforms: linux/amd64
push: true