From 0b4fd7b2581bd77738d446b6e63542222d3bc8af Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Thu, 16 Apr 2026 10:15:11 +0200 Subject: [PATCH] chore: use Dockerfile --- action.yml | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/action.yml b/action.yml index fb8b9d2..b4b52ed 100644 --- a/action.yml +++ b/action.yml @@ -25,13 +25,20 @@ inputs: required: true runs: - using: 'docker' + # using: 'docker' + using: 'composite' + steps: + - name: 'Run Google Chat Action' + shell: bash + run: | + docker run --rm -it $(docker build -q .) + #image: 'docker://dther/google-chat-action:v0.8' - image: 'Dockerfile' - args: - - ${{ inputs.project }} - - ${{ inputs.commit }} - - ${{ inputs.branch }} - - ${{ inputs.status }} - - ${{ inputs.actionid }} - - ${{ inputs.webhook }} + #image: 'Dockerfile' + #args: + # - ${{ inputs.project }} + # - ${{ inputs.commit }} + # - ${{ inputs.branch }} + # - ${{ inputs.status }} + # - ${{ inputs.actionid }} + # - ${{ inputs.webhook }}