Compare commits

...

5 commits
v1 ... main

Author SHA1 Message Date
87a5a35b8f Update entrypoint.sh 2024-12-11 17:14:25 +00:00
0a9fa2b000 test 2024-12-11 14:28:41 +01:00
34255d6260 Update action.yml 2024-12-10 20:22:09 +00:00
14dd5e117c Update action.yml 2024-12-10 20:17:19 +00:00
befb0a1973
uff 2024-06-16 11:17:56 +02:00
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,7 @@
# Container image that runs your code
FROM alpine:edge
FROM alpine
RUN apk add --no-cache ca-certificates
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh

1
entrypoint.sh Normal file → Executable file
View file

@ -1,5 +1,6 @@
#!/bin/sh -l
echo "Hello $1"
env
time=$(date)
echo "time=$time" >> $GITHUB_OUTPUT