mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
update release version
This commit is contained in:
parent
1d622a678e
commit
8ae24e2b38
7 changed files with 13 additions and 68 deletions
62
.github/workflows/docker-image.yml
vendored
62
.github/workflows/docker-image.yml
vendored
|
@ -1,62 +0,0 @@
|
|||
name: Publish Docker image
|
||||
|
||||
on:
|
||||
workflow_dispatch: # on button click
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
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@v4
|
||||
|
||||
- name: Log in to GitHub Docker registry
|
||||
uses: docker/login-action@v3
|
||||
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@v5
|
||||
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@v6.13.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
|
Loading…
Add table
Add a link
Reference in a new issue