-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce387b8
commit af20364
Showing
2 changed files
with
22 additions
and
4 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,16 +1,27 @@ | ||
# action.yml | ||
name: 'Scala SBT Action' | ||
author: 'Matan Keidar <[email protected]>' | ||
description: 'SBT build tool action' | ||
description: 'SBT build tool action with docker' | ||
inputs: | ||
commands: # id of input | ||
description: 'SBT commands' | ||
description: 'Commands to run' | ||
required: true | ||
docker-login-username: # Docker login username | ||
description: 'docker login username' | ||
required: true | ||
docker-login-password: # Docker login password | ||
description: 'docker login password' | ||
required: true | ||
docker-registry: # Docker registry | ||
description: 'docker registry' | ||
required: true | ||
default: 'test' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
args: | ||
- ${{ inputs.docker-login-username }} | ||
- ${{ inputs.docker-login-password }} | ||
- ${{ inputs.docker-registry }} | ||
- ${{ inputs.commands }} | ||
|
||
branding: | ||
|
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