2021-07-31 09:37:28 +00:00
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
|
|
|
|
name: Publish Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
|
|
|
name: Push Docker image to Docker Hub
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Extract Version
|
|
|
|
id: version_step
|
|
|
|
run: |
|
|
|
|
echo "##[set-output name=version;]NACOS_VERSION=${GITHUB_REF#$"refs/tags/v"}"
|
2021-07-31 09:57:06 +00:00
|
|
|
|
2021-07-31 09:37:28 +00:00
|
|
|
- name: Check out the repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
2021-07-31 10:02:04 +00:00
|
|
|
|
2021-07-31 09:37:28 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: nacos/nacos-server
|
|
|
|
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@v2.3.0
|
|
|
|
with:
|
|
|
|
context: build
|
|
|
|
file: build/Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2022-03-22 02:58:00 +00:00
|
|
|
build-args: ${{steps.version_step.outputs.version}}
|
2022-03-22 03:30:31 +00:00
|
|
|
|
2022-03-22 02:58:00 +00:00
|
|
|
push_to_multi_platforms_registry:
|
|
|
|
name: Push Docker image to Docker Hub
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Extract Version
|
|
|
|
id: version_step
|
|
|
|
run: |
|
|
|
|
echo "##[set-output name=version;]NACOS_VERSION=${GITHUB_REF#$"refs/tags/v"}"
|
|
|
|
|
|
|
|
- name: Check out the repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v3
|
|
|
|
with:
|
|
|
|
images: nacos/nacos-server
|
2022-03-22 03:30:31 +00:00
|
|
|
flavor: |
|
|
|
|
latest=false
|
|
|
|
tags: |
|
2023-03-17 10:49:05 +00:00
|
|
|
type=pep440,pattern=v{{version}}-slim
|
2022-03-22 02:58:00 +00:00
|
|
|
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: docker/build-push-action@v2.3.0
|
|
|
|
with:
|
|
|
|
context: build
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
file: build/Dockerfile.Slim
|
|
|
|
push: true
|
2022-03-22 03:30:31 +00:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2022-03-22 02:58:00 +00:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
build-args: ${{steps.version_step.outputs.version}}
|