mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-31 03:18:43 -06:00
95 lines
3.6 KiB
YAML
95 lines
3.6 KiB
YAML
name: Push Docker Image to DockerHub
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'SemVer format release tag, i.e. 0.24.5'
|
|
required: true
|
|
repository_dispatch:
|
|
types: [ push-docker-image ]
|
|
|
|
jobs:
|
|
get-release-id:
|
|
name: Get Dolt Release Id
|
|
runs-on: ubuntu-22.04
|
|
outputs:
|
|
release_id: ${{ steps.get_release.outputs.release_id }}
|
|
steps:
|
|
- name: Get Release
|
|
id: get_release
|
|
run: |
|
|
release_id="$RELEASE_ID"
|
|
if [ "$EVENT_TYPE" == "workflow_dispatch" ]; then
|
|
release_id=$(curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/repos/dolthub/dolt/releases/tags/v${{ github.event.inputs.version }} | jq '.id')
|
|
fi
|
|
echo "release_id=$release_id" >> $GITHUB_OUTPUT
|
|
env:
|
|
EVENT_TYPE: ${{ github.event_name }}
|
|
RELEASE_ID: ${{ github.event.client_payload.release_id }}
|
|
|
|
docker-image-push:
|
|
name: Push Docker Image
|
|
needs: get-release-id
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
- name: Build and push dolt image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
context: .
|
|
file: ./docker/Dockerfile
|
|
push: true
|
|
tags: dolthub/dolt:${{ github.event.inputs.version || github.event.client_payload.version }} , dolthub/dolt:latest
|
|
build-args: |
|
|
DOLT_VERSION=${{ github.event.inputs.version || github.event.client_payload.version }}
|
|
- name: Build and push dolt-sql-server image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
context: .
|
|
file: ./docker/serverDockerfile
|
|
push: true
|
|
tags: dolthub/dolt-sql-server:${{ github.event.inputs.version || github.event.client_payload.version }} , dolthub/dolt-sql-server:latest
|
|
build-args: |
|
|
DOLT_VERSION=${{ github.event.inputs.version || github.event.client_payload.version }}
|
|
- name: Update Docker Hub Readme for dolt image
|
|
uses: peter-evans/dockerhub-description@v4
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
repository: dolthub/dolt
|
|
readme-filepath: ./docker/README.md
|
|
- name: Update Docker Hub Readme for dolt-sql-server image
|
|
uses: peter-evans/dockerhub-description@v4
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
repository: dolthub/dolt-sql-server
|
|
readme-filepath: ./docker/serverREADME.md
|
|
- run: |
|
|
gh api \
|
|
--method PATCH \
|
|
-H "Accept: application/vnd.github+json" \
|
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
|
/repos/$REPO_OWNER/$REPO_NAME/releases/$RELEASE_ID \
|
|
-F "draft=false" -F "prerelease=false" -F "make_latest=true"
|
|
env:
|
|
GH_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN || secrets.GITHUB_TOKEN }}
|
|
REPO_OWNER: dolthub
|
|
REPO_NAME: dolt
|
|
RELEASE_ID: ${{ needs.get-release-id.outputs.release_id }}
|