Skip to content

Commit

Permalink
Add USER_ID and GROUP_ID ENVs
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Apr 18, 2021
1 parent b1c3697 commit a64f0b1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,24 @@ inputs:
description: "Command line arguments"
default: '--output-format=github --no-ansi --no-progress -v'
required: false
user-id:
description: "The user to execute the build, will be auto detected"
default: ''
required: false
group-id:
description: "The user to execute the build, will be auto detected"
default: ''
required: false

branding:
icon: "book"
color: blue
runs:
using: "docker"
image: "docker://botsudo/action-doctum:latest"
env:
USER_ID: "${{ inputs.user-id }}"
GROUP_ID: "${{ inputs.group-id }}"
args:
- latest
- "${{ inputs.config-file }}"
Expand Down

0 comments on commit a64f0b1

Please sign in to comment.