Skip to content
Snippets Groups Projects
Commit 70839bd4 authored by Wade Barnes's avatar Wade Barnes
Browse files

Add support for building off a git ref

parent 61e7ff0d
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,10 @@ on:
required: true
default: linux/amd64
type: string
ref:
description: 'Optional - The branch, tag or SHA to checkout.'
required: false
type: string
# Note:
# - ACA-Py with Indy SDK image builds do not include support for the linux/arm64 platform.
......@@ -48,6 +52,8 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ inputs.ref || '' }}
- name: Gather image info
id: info
......
......@@ -15,6 +15,10 @@ on:
required: true
default: linux/amd64
type: string
ref:
description: 'Optional - The branch, tag or SHA to checkout.'
required: false
type: string
env:
# linux/386 platform support has been disabled pending a permanent fix for https://github.com/hyperledger/aries-cloudagent-python/issues/2124
......@@ -33,6 +37,8 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: ${{ inputs.ref || '' }}
- name: Gather image info
id: info
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment