19 lines
434 B
Plaintext
19 lines
434 B
Plaintext
# Act configuration file
|
|
# This file contains default options for the act command
|
|
|
|
# Use the medium-sized Docker image (includes common tools)
|
|
-P ubuntu-latest=catthehacker/ubuntu:act-latest
|
|
|
|
# Enable verbose logging (comment out if too noisy)
|
|
# --verbose
|
|
|
|
# Always use secrets file if it exists
|
|
--secret-file .secrets
|
|
|
|
# Set container architecture
|
|
--container-architecture linux/amd64
|
|
|
|
# Use Docker BuildKit
|
|
--env DOCKER_BUILDKIT=1
|
|
|