forked from zeroclaw-labs/zeroclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.actrc
More file actions
21 lines (17 loc) · 876 Bytes
/
.actrc
File metadata and controls
21 lines (17 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# act defaults — keeps `act` runs reproducible without flag soup.
# https://github.com/nektos/act
# Map the ARM runner used in production to a standard amd64 image so act
# can run it on any host. (Prod still uses ubuntu-24.04-arm via GitHub.)
-P ubuntu-24.04-arm=catthehacker/ubuntu:act-latest
-P ubuntu-latest=catthehacker/ubuntu:act-latest
# Load secrets (e.g. ANTHROPIC_API_KEY) from a local file. Create it as:
# ANTHROPIC_API_KEY=sk-ant-...
# .secrets is gitignored.
--secret-file .secrets
# Force amd64 container architecture (Apple Silicon hosts otherwise pull
# arm64 images that lack many tools).
--container-architecture linux/amd64
# Run a local artifact server so actions/upload-artifact and
# actions/download-artifact work between jobs. The directory is
# auto-created by scripts/dev/act-local.sh on first run.
--artifact-server-path /tmp/act-artifacts