3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-04 16:44:07 +00:00

Update docker-image.yml (#5739)

* 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
This commit is contained in:
Nikolaj Bjorner 2021-12-25 17:33:35 -08:00 committed by GitHub
parent 7d311ac2ef
commit ec3e296050
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 15 deletions

View file

@ -7,15 +7,17 @@ on:
jobs: jobs:
push_to_registry: push_to_registry:
name: Push Docker image to Docker Hub name: Push Docker image to GitHub Docker registry
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out the repo - name: Check out the repo
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Log in to Docker Hub - name: Log in to GitHub Docker registry
uses: docker/login-action@v1 uses: docker/login-action@v1
with: with:
registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
@ -26,7 +28,7 @@ jobs:
id: meta id: meta
uses: docker/metadata-action@v3 uses: docker/metadata-action@v3
with: with:
images: deemetree/z3-fork images: ghcr.io/z3prover/z3
flavor: | flavor: |
latest=auto latest=auto
prefix=ubuntu-20.04-bare-z3- prefix=ubuntu-20.04-bare-z3-
@ -37,7 +39,7 @@ jobs:
type=sha,prefix=ubuntu-20.04-bare-z3-sha- type=sha,prefix=ubuntu-20.04-bare-z3-sha-
- name: Build and push Bare Z3 Docker Image - name: Build and push Bare Z3 Docker Image
uses: docker/build-push-action@v2.7.0 uses: docker/build-push-action@v2.7.0
with: with:
context: . context: .
push: true push: true
target: bare-z3 target: bare-z3
@ -46,13 +48,14 @@ jobs:
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
# ------------------------------ # ------------------------------
# Repo description on Docker Hub # Repo description on GHCR
# ------------------------------ # ------------------------------
- name: Update repo description # - name: Update repo description
uses: peter-evans/dockerhub-description@v2 # uses: peter-evans/dockerhub-description@v2
with: # with:
repository: deemetree/z3-fork # registry: ghcr.io
username: ${{ secrets.DOCKER_USERNAME }} # repository: z3prover/z3
password: ${{ secrets.DOCKER_PASSWORD }} # username: ${{ secrets.DOCKER_USERNAME }}
short-description: ${{ github.event.repository.description }} # password: ${{ secrets.DOCKER_PASSWORD }}
readme-filepath: ./docker/README.md # short-description: ${{ github.event.repository.description }}
# readme-filepath: ./docker/README.md

View file

@ -42,4 +42,4 @@ ENTRYPOINT [ "z3" ]
# ... # ...
# TODO(optional): introduce C/C++ -binding stage # TODO(optional): introduce C/C++ -binding stage
# ... # ...