Release-Github #10
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 is a basic workflow to help you get started with Actions | |
name: Release-Github | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
workflow_run: | |
workflows: ["Build"] | |
types: | |
- completed | |
on: | |
branches: | |
- develop | |
- main | |
pull_requests: | |
- merged | |
env: | |
IMAGE_NAME: dingo-ubuntu | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
release: | |
# The type of runner that the job will run on | |
if: github.event.pull_request.merged == false | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
# Build Docker Image | |
- name: Dump GitHub context | |
id: github_context_step | |
run: echo '${{ toJSON(github) }}' | |
- name: Download artifact | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
github_token: ${{secrets.GITHUB_TOKEN}} | |
workflow: build.yml | |
name: dingo.zip | |
- name: rename artifactory name | |
run: | | |
cp dingo.zip ./docker | |
# setup Docker buld action | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Github Packages | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build image and push to Docker Hub and GitHub Container Registry | |
uses: docker/build-push-action@v6 | |
with: | |
# relative path to the place where source code with Dockerfile is located | |
context: ./docker | |
# Note: tags has to be all lower-case | |
tags: ghcr.io/dingodb/dingo:latest | |
# build on feature branches, push only on develop/main branch | |
push: ${{ github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main' }} | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |