blob: 1e6e78a6bec1569e58a483cd262c912fe37f1d4a [file] [log] [blame]
# 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: publish-docker
on:
pull_request:
push:
branches:
- main
env:
HUB: ghcr.io/apache
jobs:
push-banyandb-image:
if: github.repository == 'apache/skywalking-banyandb'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
timeout-minutes: 90
strategy:
fail-fast: true
env:
TAG: ${{ github.sha }}
steps:
- uses: actions/setup-node@v3
with:
node-version: 16.15
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Update dependencies
run: GOPROXY=https://proxy.golang.org go mod download
- name: Generate codes
run: make generate
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build docker image
run: |
make docker || make docker
docker image ls
- name: Log in to the Container registry
uses: docker/login-action@v1.10.0
if: github.ref == 'refs/heads/main'
with:
registry: ${{ env.HUB }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push docker image
if: github.ref == 'refs/heads/main'
run: |
make docker.push || make docker.push