Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

update build-and-test.yml #171

update build-and-test.yml

update build-and-test.yml #171

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: release-packages
on:
push:
branches:
- main
tags: ["v*"]
env:
# Use docker.io for Docker Hub if empty
REGISTRY_SERVER_ADDRESS: ghcr.io/openinsight-proj
REGISTRY_USER_NAME: ${{ github.repository_owner }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }}
jobs:
release-images:
if: github.repository == 'openinsight-proj/openinsight'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
timeout-minutes: 120
env:
TAG: ${{ github.sha }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Login to GitHub Package Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.ACTIONS_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ${{ env.REGISTRY_SERVER_ADDRESS }}/openinsight
- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY_SERVER_ADDRESS }}/openinsight:${{ env.TAG }}
labels: ${{ steps.meta.outputs.labels }}