diff options
| author | EMERALD <hudson.samuels@gmail.com> | 2023-02-01 19:17:24 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-01 17:17:24 -0800 |
| commit | 0929b9c5cb3dea7620b6bee495b4608e42696a1a (patch) | |
| tree | a909fcdda6a1fb1e9c042afb1fa08b1a1f73ff01 | |
| parent | 43b2269ea710c02278f784f28521a99dc9d3915b (diff) | |
| download | decky-loader-0929b9c5cb3dea7620b6bee495b4608e42696a1a.tar.gz decky-loader-0929b9c5cb3dea7620b6bee495b4608e42696a1a.zip | |
Specify linux/amd64 Docker architecture (#356)v2.5.3-pre2
| -rwxr-xr-x | act/run-act.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/act/run-act.sh b/act/run-act.sh index 63b325a4..8060d862 100755 --- a/act/run-act.sh +++ b/act/run-act.sh @@ -26,10 +26,10 @@ cd .. if [[ "$type" == "release" ]]; then printf "release!\n" - act workflow_dispatch -e act/release.json --artifact-server-path act/artifacts + act workflow_dispatch -e act/release.json --artifact-server-path act/artifacts --container-architecture linux/amd64 elif [[ "$type" == "prerelease" ]]; then printf "prerelease!\n" - act workflow_dispatch -e act/prerelease.json --artifact-server-path act/artifacts + act workflow_dispatch -e act/prerelease.json --artifact-server-path act/artifacts --container-architecture linux/amd64 else printf "Release type unspecified/badly specified.\n" printf "Options: 'release' or 'prerelease'\n" |
