-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add arm64 linux builders * fix docker mainnet config, update on tag build * update release to include linux arm64 artifacts
- Loading branch information
Showing
5 changed files
with
105 additions
and
46 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Build Docker | ||
description: Build all the docker containers | ||
|
||
inputs: | ||
network: | ||
description: "main|test" | ||
required: true | ||
version: | ||
description: "version of the build" | ||
required: true | ||
docker_username: | ||
description: "Docker repo username" | ||
required: true | ||
docker_password: | ||
description: "Docker repo password" | ||
required: true | ||
|
||
|
||
# need artifacts to have testnet/mainnet designators | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Merge and Tag Digests | ||
uses: mobilecoinofficial/gh-actions/docker-merge-digests@v0 | ||
with: | ||
images: mobilecoin/full-service | ||
flavor: latest=false | ||
tags: | | ||
${{ inputs.version }}-${{ inputs.network }}net | ||
username: ${{ inputs.docker_username }} | ||
password: ${{ inputs.docker_password }} | ||
digest_artifact_prefix: digests-${{ inputs.network }}net |
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