From 49296c34fba2ebbe15e0ab85f14a645763ab7b38 Mon Sep 17 00:00:00 2001 From: subochev Date: Wed, 24 Dec 2025 21:31:34 +0300 Subject: [PATCH] DEVEX-20: --- docker/action.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 docker/action.yaml diff --git a/docker/action.yaml b/docker/action.yaml new file mode 100644 index 0000000..5a629e2 --- /dev/null +++ b/docker/action.yaml @@ -0,0 +1,24 @@ +name: "Clone OTP" +description: "Build docker image with docker" + +inputs: + image-name: + description: "Name of image" + required: true + tags: + description: "Tags of image" + required: true + +runs: + using: "composite" + steps: + - name: "Config gradle" + shell: bash + run: | + cat > ./Dockerfile << 'EOF' + EOF + - name: Build Docker Image + uses: https://git.binom.pw/subochev/devops/build-docker@main + with: + image_name: ${{ inputs.image-name }} + tags: latest ${{ inputs.tags }} \ No newline at end of file