Remove Dockerfile and use Bash instead

This commit is contained in:
minoplhy 2021-08-01 09:47:44 +07:00
parent d91aa00c49
commit f31f8922c2
2 changed files with 10 additions and 17 deletions

View File

@ -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"]

View File

@ -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 }}