-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add build base docker image workflow
Signed-off-by: Florent Poinsard <florent.poinsard@outlook.fr>
- Loading branch information
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: Docker Build Base | ||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '*' | ||
|
||
concurrency: | ||
group: format('{0}-{1}', ${{ github.ref }}, 'Docker Build Base') | ||
cancel-in-progress: true | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
build_and_push_base: | ||
name: Build and push vitess/base Docker images | ||
runs-on: gh-hosted-runners-16cores-1 | ||
if: github.repository == 'vitessio/vitess' | ||
|
||
strategy: | ||
fail-fast: true | ||
matrix: | ||
branch: [ latest, mysql57, percona57, percona80 ] | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set Dockerfile path | ||
run: | | ||
if [[ "${{ matrix.branch }}" == "latest" ]]; then | ||
echo "DOCKERFILE=./docker/base/Dockerfile" >> $GITHUB_ENV | ||
else | ||
echo "DOCKERFILE=./docker/base/Dockerfile.${{ matrix.branch }}" >> $GITHUB_ENV | ||
fi | ||
- name: Build and push on main | ||
if: github.ref == 'refs/heads/main' | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ${{ env.DOCKERFILE }} | ||
push: true | ||
tags: vitess/base:${{ matrix.branch }} | ||
|
||
- name: Get the Git tag | ||
if: startsWith(github.ref, 'refs/tags/') | ||
run: echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
|
||
- name: Set Docker tag name | ||
if: startsWith(github.ref, 'refs/tags/') | ||
run: | | ||
if [[ "${{ matrix.branch }}" == "latest" ]]; then | ||
echo "DOCKER_TAG=vitess/base:${TAG_NAME}" >> $GITHUB_ENV | ||
else | ||
echo "DOCKER_TAG=vitess/base:${TAG_NAME}-${{ matrix.branch }}" >> $GITHUB_ENV | ||
fi | ||
- name: Build and push on main | ||
if: startsWith(github.ref, 'refs/tags/') | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ${{ env.DOCKERFILE }} | ||
push: true | ||
tags: ${{ env.DOCKER_TAG }} |