Compare commits

..

No commits in common. "main" and "v1" have entirely different histories.
main ... v1

2 changed files with 1 additions and 3 deletions

View file

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

1
entrypoint.sh Executable file → Normal file
View file

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