forked from Finschia/finschia
-
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.
feat: compile static binary as release assets and docker image (Finsc…
…hia#221) * build: modify docker image base and binary using static library. Signed-off-by: zemyblue <zemyblue@gmail.com> * chore: change the description in readme Signed-off-by: zemyblue <zemyblue@gmail.com> * fix: localnet-docker-build unittest Signed-off-by: zemyblue <zemyblue@gmail.com> * ci: change the github action ci for pushing Docker images Signed-off-by: zemyblue <zemyblue@gmail.com> * ci: change release build for using static binary assets. Signed-off-by: zemyblue <zemyblue@gmail.com> * chore: update changelog Signed-off-by: zemyblue <zemyblue@gmail.com> * fix: parse tag in github action of docker.yml Signed-off-by: zemyblue <zemyblue@gmail.com> * ci: change docker build and push trigger Signed-off-by: zemyblue <zemyblue@gmail.com> * ci: remove condition if `pull_request` or not. Signed-off-by: zemyblue <zemyblue@gmail.com> * fix: typo Signed-off-by: zemyblue <zemyblue@gmail.com> * chore: remove debian11 and nonroot base docker image Signed-off-by: zemyblue <zemyblue@gmail.com> --------- Signed-off-by: zemyblue <zemyblue@gmail.com>
- Loading branch information
Showing
8 changed files
with
276 additions
and
228 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,53 +1,88 @@ | ||
name: Build & Push | ||
name: Push Docker Images | ||
# Build & Push builds the finschia docker image on every tag push | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
- "v[0-9]+.[0-9]+.[0-9]+-*" # Push events to matching v*, i.e. v1.0-rc1, v20.15.10-alpha1 | ||
|
||
env: | ||
registry: docker.io | ||
repository: finschia/finschianode | ||
DOCKER_REPOSITORY: finschia/finschianode | ||
RUNNER_BASE_IMAGE_ALPINE: alpine:3.17 | ||
jobs: | ||
build: | ||
docker_build_and_push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Create a context for buildx | ||
run: docker context create buildx | ||
|
||
- name: Set up docker buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
with: | ||
endpoint: buildx | ||
config-inline: | | ||
[registry."docker.io"] | ||
- name: login to the registry | ||
- name: Login to the registry | ||
uses: docker/login-action@v2 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
registry: ${{env.registry}} | ||
username: ${{secrets.DOCKERHUB_USERNAME}} | ||
password: ${{secrets.DOCKERHUB_TOKEN}} | ||
- name: extract metadata for docker | ||
|
||
- name: Find go version | ||
id: find_go_version | ||
run: | | ||
GO_VERSION=$(cat go.mod | grep -E 'go [0-9].[0-9]+' | cut -d ' ' -f 2) | ||
echo "GO_VERSION=$GO_VERSION" >> $GITHUB_ENV | ||
- name: Find Ostracon version | ||
id: find_ostracon_version | ||
run: | | ||
OST_VERSION=$(go list -m github.com/Finschia/ostracon | sed 's:.* ::') | ||
echo "OST_VERSION=$OST_VERSION" >> $GITHUB_ENV | ||
- name: Parse tag | ||
id: tag | ||
run: | | ||
ref='refs/tags/' | ||
if [[ ${{ github.ref }} == *${ref}* ]]; then | ||
VERSION=$(echo ${{ github.ref_name }} | sed "s/v//") | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
else | ||
echo "VERSION=${{ github.sha }}" >> $GITHUB_ENV | ||
fi | ||
- name: Extract metadata for docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{env.registry}}/${{env.repository}} | ||
images: ${{env.registry}}/${{env.DOCKER_REPOSITORY}} | ||
tags: | | ||
type=semver,pattern={{version}} | ||
- name: docker build | ||
# Build Docker image | ||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
push: ${{github.event_name != 'pull_request'}} | ||
build-args: ARCH=x86_64 | ||
tags: ${{steps.meta.outputs.tags}} | ||
file: Dockerfile | ||
context: . | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
build-args: | | ||
GO_VERSION=${{ env.GO_VERSION }} | ||
RUNNER_IMAGE=${{ env.RUNNER_BASE_IMAGE_ALPINE }} | ||
GIT_VERSION=${{ env.VERSION }} | ||
GIT_COMMIT=${{ github.sha }} | ||
OST_VERSION=${{ env.OST_VERSION }} | ||
tags: | | ||
${{ env.DOCKER_REPOSITORY }}:${{ env.VERSION }} | ||
labels: ${{steps.meta.outputs.labels}} | ||
platforms: linux/amd64 |
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 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.