Skip to content

Commit

Permalink
Merge pull request #11 from tj-actions/feat/remove-unused-inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 authored Jan 1, 2023
2 parents f38575b + e2224ba commit 886ece3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ inputs:
description: 'Options to pass to docker run'
required: false
default: ''
workdir:
description: 'Working directory'
required: false
default: "."

runs:
using: 'composite'
Expand All @@ -24,7 +20,7 @@ runs:
id: docker-run
shell: bash
run: |
docker run --rm -v $(pwd):${{ github.workspace }} -v "/var/run/docker.sock":"/var/run/docker.sock" --workdir ${{ github.workspace }}/${{ inputs.workdir }} ${{ inputs.options }} ${{ inputs.image }} ${{ inputs.args }}
docker run --rm -v "/var/run/docker.sock":"/var/run/docker.sock" ${{ inputs.options }} ${{ inputs.image }} ${{ inputs.args }}
branding:
icon: refresh-cw
Expand Down

0 comments on commit 886ece3

Please sign in to comment.