Re Dockerfile
This commit is contained in:
parent
d0f2dce57f
commit
1b17430b4f
7
Dockerfile
Normal file
7
Dockerfile
Normal file
@ -0,0 +1,7 @@
|
||||
# Container image that runs your code
|
||||
FROM debian
|
||||
|
||||
# Copies your code file from your action repository to the filesystem path `/` of the container
|
||||
RUN apt-get update && apt-get install -y curl && apt-get install -y git
|
||||
# Code file to execute when the docker container starts up (`entrypoint.sh`)
|
||||
ENTRYPOINT ["filters.sh"]
|
19
action.yml
19
action.yml
@ -25,13 +25,12 @@ inputs:
|
||||
required: true
|
||||
|
||||
runs:
|
||||
steps:
|
||||
- run: ${{ github.action_path }}/filters.sh
|
||||
shell: bash
|
||||
args:
|
||||
- ${{ inputs.Destination_NAME }}
|
||||
- ${{ inputs.Destination_REPO }}
|
||||
- ${{ inputs.Destination_VERSION }}
|
||||
- ${{ inputs.GIT_NAME }}
|
||||
- ${{ inputs.GIT_EMAIL }}
|
||||
- ${{ inputs.REPO_BRANCH }}
|
||||
using: "docker"
|
||||
image: "Dockerfile"
|
||||
args:
|
||||
- ${{ inputs.Destination_NAME }}
|
||||
- ${{ inputs.Destination_REPO }}
|
||||
- ${{ inputs.Destination_VERSION }}
|
||||
- ${{ inputs.GIT_NAME }}
|
||||
- ${{ inputs.GIT_EMAIL }}
|
||||
- ${{ inputs.REPO_BRANCH }}
|
||||
|
Loading…
Reference in New Issue
Block a user