3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 01:24:08 +00:00

Create docker-image.yml

thanks #5735
This commit is contained in:
Nikolaj Bjorner 2021-12-23 14:43:12 -08:00 committed by GitHub
parent ecf41972b1
commit 6b0dc6d144
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

58
.github/workflows/docker-image.yml vendored Normal file
View file

@ -0,0 +1,58 @@
name: Publish Docker image
on:
schedule:
- cron: "0 1 * * 0" # every Sunday at 1 am
workflow_dispatch: # on button click
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
# -------
# BARE Z3
# -------
- name: Extract metadata (tags, labels) for Bare Z3 Docker Image
id: meta
uses: docker/metadata-action@v3
with:
images: deemetree/z3-fork
flavor: |
latest=auto
prefix=ubuntu-20.04-bare-z3-
tags: |
type=schedule,pattern={{date 'YYYYMMDD'}}
type=ref,event=tag
type=edge
type=sha,prefix=ubuntu-20.04-bare-z3-sha-
- name: Build and push Bare Z3 Docker Image
uses: docker/build-push-action@v2.7.0
with:
context: .
push: true
target: bare-z3
file: ./docker/ubuntu-20-04.Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# ------------------------------
# Repo description on Docker Hub
# ------------------------------
- name: Update repo description
uses: peter-evans/dockerhub-description@v2
with:
repository: deemetree/z3-fork
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
short-description: ${{ github.event.repository.description }}
readme-filepath: ./docker/README.md