File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1+ # Container image that runs your code
2+ FROM ghcr.io/axway-api-management-plus/apimcli:1.14.7
3+
4+ # Copies your code file from your action repository to the filesystem path `/` of the container
5+ COPY entrypoint.sh /entrypoint.sh
6+
7+
8+ # Code file to execute when the docker container starts up (`entrypoint.sh`)
9+ ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ inputs:
1212
1313runs :
1414 using : " docker"
15- image : " docker://ghcr.io/axway-api-management-plus/apimcli:1.14.7 "
15+ image : " Dockerfile "
1616 volumes :
1717 - ./:/opt/apim-cli/data
1818 args :
Original file line number Diff line number Diff line change 1+ #! /bin/sh -l
2+
3+ echo " Hello $1 "
4+ time=$( date)
5+ echo " time=$time " >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments