fornet arm64 client build #8
Workflow file for this run
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
name: fornet arm64 client build | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
required: true | |
description: "docker version to release" | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
docker-and-linux: | |
runs-on: macos-13-xlarge | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login to GithubPackages | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: build and push docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
#platforms: linux/amd64,linux/arm64 | |
push: true | |
file: command/docker/client/client.Dockerfile | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
tags: ${{ env.REGISTRY }}/fornetcode/fornet:${{github.event.inputs.version}} | |
- name: copy binary from docker to release directory | |
run: | | |
mkdir -p release | |
docker run --rm -v ./release:/release ${{ env.REGISTRY }}/fornetcode/fornet:${{github.event.inputs.version}} cp /bin/fornet:/release/ && cp /bin/fornet-cli:/release | |
cd release && tar -czvf release/fornet-linux-aarch64.tar.gz ./fornet ./fornet-cli && rm fornet && rm fornet-cli | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: fornet-linux-aarch64.tar.gz | |
path: release/fornet-aarch64-unknown-linux-gnu.tar.gz | |
if-no-files-found: error |