-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### What problem were solved in this pull request? Problem: docker.io is disabled in China. ### What is changed and how it works? Use another image repo instead. ### Other information
- Loading branch information
Showing
3 changed files
with
69 additions
and
5 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,65 @@ | ||
name: publish miniob docker image | ||
|
||
on: | ||
push: | ||
tags: | ||
- "docker-*" | ||
|
||
env: | ||
tagName: ${{ github.ref_name }} | ||
|
||
jobs: | ||
publish-miniob-docker-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository and submodules | ||
uses: actions/checkout@v2 | ||
|
||
- name: Log in to Docker hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Log in to Quay io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_IO_USERNAME }} | ||
password: ${{ secrets.QUAY_IO_PASSWORD }} | ||
|
||
- name: Log in to Ghcr io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Set Version variables | ||
id: set_version_vars | ||
run: echo "version=$(echo $tagName | grep -P '(\d*\.\d*)' --only-matching)" >> $GITHUB_OUTPUT | ||
|
||
- name: Build and push miniob w/o cache | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: ./ | ||
platforms: linux/amd64,linux/arm64 | ||
file: ./docker/Dockerfile | ||
push: true | ||
tags: | | ||
${{ vars.DOCKER_PUSH_BASE }}/miniob:${{ steps.set_version_vars.outputs.version }} | ||
quay.io/${{ vars.QUAY_IO_PUSH_BASE }}/miniob:${{ steps.set_version_vars.outputs.version }} | ||
ghcr.io/${{ github.repository_owner }}/miniob:${{ steps.set_version_vars.outputs.version }} | ||
${{ vars.DOCKER_PUSH_BASE }}/miniob:latest | ||
quay.io/${{ vars.QUAY_IO_PUSH_BASE }}/miniob:latest | ||
ghcr.io/${{ github.repository_owner }}/miniob:latest | ||
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
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