From 14dd5e117cebe718ec98a7b2a9a017e671e3252d Mon Sep 17 00:00:00 2001 From: lubiana Date: Tue, 10 Dec 2024 20:17:19 +0000 Subject: [PATCH 1/4] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 782c830..5605883 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ outputs: time: # id of output description: 'The time we greeted you' runs: - using: 'docker' + using: 'podman' image: 'Dockerfile' args: - ${{ inputs.who-to-greet }} From 34255d6260fe0044ca44254e388f5b0dfeb524a3 Mon Sep 17 00:00:00 2001 From: lubiana Date: Tue, 10 Dec 2024 20:22:09 +0000 Subject: [PATCH 2/4] Update action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5605883..782c830 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ outputs: time: # id of output description: 'The time we greeted you' runs: - using: 'podman' + using: 'docker' image: 'Dockerfile' args: - ${{ inputs.who-to-greet }} From 0a9fa2b000f1c20abfa2a167154468662afd5eb1 Mon Sep 17 00:00:00 2001 From: lubiana Date: Wed, 11 Dec 2024 14:28:41 +0100 Subject: [PATCH 3/4] test --- entrypoint.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 entrypoint.sh diff --git a/entrypoint.sh b/entrypoint.sh old mode 100644 new mode 100755 From 87a5a35b8fe892813e065a76abdeef3b5833287f Mon Sep 17 00:00:00 2001 From: lubiana Date: Wed, 11 Dec 2024 17:14:25 +0000 Subject: [PATCH 4/4] Update entrypoint.sh --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 3fee027..70a0dc3 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,5 +1,6 @@ #!/bin/sh -l echo "Hello $1" +env time=$(date) echo "time=$time" >> $GITHUB_OUTPUT