Remove Dockerfile and use Bash instead
This commit is contained in:
parent
d91aa00c49
commit
f31f8922c2
@ -1,8 +0,0 @@
|
||||
# Container image that runs your code
|
||||
FROM debian
|
||||
|
||||
# Copies your code file from your action repository to the filesystem path `/` of the container
|
||||
COPY filters.sh /filters.sh
|
||||
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,12 +25,13 @@ inputs:
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: "docker"
|
||||
image: "Dockerfile"
|
||||
args:
|
||||
- ${{ inputs.Destination_NAME }}
|
||||
- ${{ inputs.Destination_REPO }}
|
||||
- ${{ inputs.Destination_VERSION }}
|
||||
- ${{ inputs.GIT_NAME }}
|
||||
- ${{ inputs.GIT_EMAIL }}
|
||||
- ${{ inputs.REPO_BRANCH }}
|
||||
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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user