Skip to content

Commit

Permalink
🐛 Add boilerplate for fixing actions/runner#665 (comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
elgohr committed Apr 9, 2022
1 parent 7efe5eb commit 9628372
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,22 @@ outputs:
runs:
using: 'composite'
steps:
- run: ${{ github.action_path }}/entrypoint.sh
shell: bash
- run: $GITHUB_ACTION_PATH/entrypoint.sh
shell: bash
env:
INPUT_NAME: ${{ inputs.name }}
INPUT_USERNAME: ${{ inputs.username }}
INPUT_PASSWORD: ${{ inputs.password }}
INPUT_REGISTRY: ${{ inputs.registry }}
INPUT_SNAPSHOT: ${{ inputs.snapshot }}
INPUT_DEFAULT_BRANCH: ${{ inputs.default_branch }}
INPUT_DOCKERFILE: ${{ inputs.dockerfile }}
INPUT_WORKDIR: ${{ inputs.workdir }}
INPUT_CONTEXT: ${{ inputs.context }}
INPUT_BUILDARGS: ${{ inputs.buildargs }}
INPUT_BUILDOPTIONS: ${{ inputs.buildoptions }}
INPUT_CACHE: ${{ inputs.cache }}
INPUT_TAGS: ${{ inputs.tags }}
INPUT_TAG_NAMES: ${{ inputs.tag_names }}
INPUT_TAG_SEMVER: ${{ inputs.tag_semver }}
INPUT_NO_PUSH: ${{ inputs.no_push }}

0 comments on commit 9628372

Please sign in to comment.