forked from frain-dev/convoy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Push docker images to DockerHub (frain-dev#2122)
* feat: update build-image.yml * feat: multi arch build * feat: update images and remove useless action files * chore: test update
- Loading branch information
Showing
18 changed files
with
154 additions
and
476 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,152 @@ | ||
name: Build docker image | ||
name: Build and Push Docker Images | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
name: | ||
description: "Manual workflow name" | ||
required: true | ||
|
||
push: | ||
tags: | ||
# Release binary for every tag. | ||
- v* | ||
|
||
env: | ||
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
DOCKER_HUB_TOKEN: ${{ secrets.DOCKER_HUB_TOKEN }} | ||
IMAGE_NAME: getconvoy/convoy | ||
RELEASE_VERSION: ${{ github.ref_name }} | ||
|
||
jobs: | ||
deploy: | ||
runs-on: "ubuntu-latest" | ||
build_ui: | ||
name: Build UI | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build Artifact | ||
run: "make ui_install type=ce" | ||
|
||
- name: Archive Build artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist-without-markdown | ||
path: | | ||
web/ui/dashboard/dist | ||
!web/ui/dashboard/dist/**/*.md | ||
build-and-push-arch: | ||
runs-on: ubuntu-latest | ||
needs: [build_ui] | ||
strategy: | ||
matrix: | ||
include: | ||
- arch: amd64 | ||
platform: linux/amd64 | ||
dockerfile: release.Dockerfile | ||
- arch: arm64 | ||
platform: linux/arm64 | ||
dockerfile: release.Dockerfile | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Download Build Artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist-without-markdown | ||
path: api/ui/build | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21 | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get and verify dependencies | ||
run: go mod tidy && go mod download && go mod verify | ||
|
||
- name: Go vet | ||
run: go vet ./... | ||
|
||
- name: Build app to make sure there are zero issues | ||
run: go build -o convoy ./cmd | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ env.DOCKER_HUB_USERNAME }} | ||
password: ${{ env.DOCKER_HUB_TOKEN }} | ||
|
||
- name: Build and push arch specific images | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ${{ matrix.dockerfile }} | ||
platforms: ${{ matrix.platform }} | ||
push: true | ||
tags: | | ||
${{ env.IMAGE_NAME }}:${{ env.RELEASE_VERSION }}-${{ matrix.arch }} | ||
build-args: | | ||
ARCH=${{ matrix.arch }} | ||
build-and-push-default: | ||
runs-on: ubuntu-latest | ||
needs: [build_ui] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download Build Artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: dist-without-markdown | ||
path: api/ui/build | ||
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21 | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get and verify dependencies | ||
run: go mod tidy && go mod download && go mod verify | ||
|
||
- name: Go vet | ||
run: go vet ./... | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Build app to make sure there are zero issues | ||
run: go build -o convoy ./cmd | ||
|
||
- name: Get the version | ||
id: get_version | ||
run: echo ::set-output name=tag::$(cat VERSION) | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Authenticate | ||
uses: actions-hub/docker/login@master | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
DOCKER_PASSWORD: ${{ secrets.PAT }} | ||
DOCKER_REGISTRY_URL: ghcr.io | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Build latest image | ||
run: docker build -t ghcr.io/${GITHUB_REPOSITORY}:${{ steps.get_version.outputs.tag }} . | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ env.DOCKER_HUB_USERNAME }} | ||
password: ${{ env.DOCKER_HUB_TOKEN }} | ||
|
||
- name: Push | ||
uses: actions-hub/docker@master | ||
with: | ||
args: push ghcr.io/${GITHUB_REPOSITORY}:${{ steps.get_version.outputs.tag }} | ||
- name: Build and push default image | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: release.Dockerfile | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: | | ||
${{ env.IMAGE_NAME }}:${{ env.RELEASE_VERSION }} | ||
${{ env.IMAGE_NAME }}:latest |
This file was deleted.
Oops, something went wrong.
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 file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.