Update README.md #55
Workflow file for this run
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
name: release_docker | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
push_to_registries: | |
name: Push Docker image to multiple registries | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
attestations: write | |
id-token: write | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "stable" | |
- name: Cache Musl | |
id: cache-musl | |
uses: actions/cache@v4 | |
with: | |
path: build/musl-libs | |
key: docker-musl-libs | |
- name: Download Musl Library | |
if: steps.cache-musl.outputs.cache-hit != 'true' | |
run: bash build.sh prepare docker-multiplatform | |
- name: Build go binary | |
run: bash build.sh release docker-multiplatform | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
leolitaly/isweet | |
ghcr.io/${{ github.repository }} | |
crpi-lzr94m9idb4j2kpi.cn-shanghai.personal.cr.aliyuncs.com/isweet/isweet | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Log in to aliyun | |
uses: docker/login-action@v3 | |
with: | |
registry: crpi-lzr94m9idb4j2kpi.cn-shanghai.personal.cr.aliyuncs.com | |
username: ${{ secrets.ALI_USERNAME }} | |
password: ${{ secrets.ALI_TOKEN }} | |
- name: Build and push Docker images | |
id: push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: Dockerfile.ci | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/386,linux/arm/v6,linux/s390x | |