mirror of
https://github.com/Z3Prover/z3
synced 2025-04-04 16:44:07 +00:00
* Update docker-image.yml towards tweaking script to use ghcr * Update docker-image.yml * Update docker-image.yml * Update docker-image.yml change usr/pwd to names that are more descriptive * Update docker-image.yml rename back to use DOCKER prefix it remains to bind to ghcr.io instead of docker.io * Update ubuntu-20-04.Dockerfile try to use ghcr instead of docker.io * Update docker-image.yml try with chcr token * Update docker-image.yml * Update docker-image.yml * Update docker-image.yml * Update ubuntu-20-04.Dockerfile * Update docker-image.yml
62 lines
1.8 KiB
YAML
62 lines
1.8 KiB
YAML
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 GitHub Docker registry
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Log in to GitHub Docker registry
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
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: ghcr.io/z3prover/z3
|
|
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 GHCR
|
|
# ------------------------------
|
|
# - name: Update repo description
|
|
# uses: peter-evans/dockerhub-description@v2
|
|
# with:
|
|
# registry: ghcr.io
|
|
# repository: z3prover/z3
|
|
# username: ${{ secrets.DOCKER_USERNAME }}
|
|
# password: ${{ secrets.DOCKER_PASSWORD }}
|
|
# short-description: ${{ github.event.repository.description }}
|
|
# readme-filepath: ./docker/README.md
|