summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParty Wumpus <48649272+PartyWumpus@users.noreply.github.com>2024-02-06 19:49:57 +0000
committerGitHub <noreply@github.com>2024-02-06 19:49:57 +0000
commit3e4c255c5bbf70923e9b2fd831eef22d2b037dc1 (patch)
tree34f0a23ad8bd7daee93d15e9897ab9a5e4b09d4c
parent62e3128d6452014daf49430d863a0f7c9a0c0592 (diff)
downloaddecky-loader-3e4c255c5bbf70923e9b2fd831eef22d2b037dc1.tar.gz
decky-loader-3e4c255c5bbf70923e9b2fd831eef22d2b037dc1.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-xact/run-act.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/act/run-act.sh b/act/run-act.sh
index 8060d862..c8184211 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 --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"