diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2024-02-06 19:49:57 +0000 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-02-14 16:42:14 -0500 |
| commit | 21c7742f9a5ad499a95c6b54644d5494d5536967 (patch) | |
| tree | 76425f2561827490e8f658306a829b3ab9c39400 | |
| parent | e8add28797749aa06de5f0483bd5c3a7f3a07bab (diff) | |
| download | decky-loader-21c7742f9a5ad499a95c6b54644d5494d5536967.tar.gz decky-loader-21c7742f9a5ad499a95c6b54644d5494d5536967.zip | |
Specify catthehacker/ubuntu:act-22.04 as container for act
Fixes an issue where act wouldn't use the correct container and so couldn't find a compatible python version, so it would fail to build.
| -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 39edb76b..0450f892 100755 --- a/act/run-act.sh +++ b/act/run-act.sh @@ -29,10 +29,10 @@ cd .. if [[ "$type" == "release" ]]; then printf "release!\n" - act workflow_dispatch -e act/release.json --artifact-server-path act/artifacts --container-architecture linux/amd64 + act workflow_dispatch -e act/release.json --artifact-server-path act/artifacts --container-architecture linux/amd64 --platform ubuntu-22.04=catthehacker/ubuntu:act-22.04 elif [[ "$type" == "prerelease" ]]; then printf "prerelease!\n" - act workflow_dispatch -e act/prerelease.json --artifact-server-path act/artifacts --container-architecture linux/amd64 + act workflow_dispatch -e act/prerelease.json --artifact-server-path act/artifacts --container-architecture linux/amd64 --platform ubuntu-22.04=catthehacker/ubuntu:act-22.04 else printf "Release type unspecified/badly specified.\n" printf "Options: 'release' or 'prerelease'\n" |
