2021-12-22 17:26:45 -08:00
|
|
|
name: Publish Docker image
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
push_to_registries:
|
2021-12-22 17:38:29 -08:00
|
|
|
name: Build pywb Docker image for release and push to Dockerhub
|
2021-12-22 17:26:45 -08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Check out the repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
-
|
|
|
|
name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: webrecorder/pywb
|
|
|
|
tags: |
|
|
|
|
type=match,pattern=v-(.*),group=1
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
|
|
|
name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
-
|
|
|
|
name: Build and push
|
|
|
|
id: docker_build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
2022-11-17 18:26:37 +01:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-12-22 17:26:45 -08:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
|