/
githubmirror
/
act
Обзор
Документация
Войти
/
githubmirror
/
act
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/runner/testdata/docker-action-host-env/action/entrypoint.sh
18 строк
334 B
ChristopherHX
fix: step container workdir and mounts (#93) (#5295)
22 авг 2025, 02:29
Не верифицирован
22 авг 2025, 02:29
2dea26b
Код
Авторство
О чём код?
#!/bin/bash set -e # Print a greeting echo "Hello, $1!" # Print all environment variables echo "Environment Variables:" env ls -la "$PWD" ls -la "$PWD/docker-action-host-env" if [ -f "$PWD/docker-action-host-env/Dockerfile" ]; then echo "Dockerfile exists in workspace." else echo "Dockerfile does not exist in workspace." fi