-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a custom davinci branch in build-push-image GH Action (#16)
* Add a custom davinci branch in build-push-image GH Action * Add changeset
- Loading branch information
Showing
3 changed files
with
18 additions
and
7 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'davinci-github-actions': minor | ||
--- | ||
|
||
- Add ability to specify a custom davinci branch in build-push-image GH Action |
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 |
---|---|---|
|
@@ -24,6 +24,10 @@ inputs: | |
description: 'pathname to Docker file' | ||
required: false | ||
default: ./davinci/packages/ci/src/configs/docker/Dockerfile | ||
davinci-branch: | ||
description: 'Custom davinci branch' | ||
required: false | ||
default: 'master' | ||
|
||
runs: | ||
using: composite | ||
|
@@ -34,6 +38,7 @@ runs: | |
repository: toptal/davinci | ||
token: ${{ env.GITHUB_TOKEN }} | ||
path: davinci | ||
ref: ${{ inputs.davinci-branch }} | ||
|
||
- name: Setup node | ||
uses: actions/[email protected] | ||
|