I’m not sure yet. I haven’t had time to download the ISO yet.
UPDATE!
I’ve installed Pop!_OS in QEMU/KVM, and I was able to build sbctl from source, but only after considerable effort. I’ll outline the steps I used to get it built (but without any of the foibles I encountered/created along the way) 
You can read the documentation I found, if you’re interested.
After you get Pop!_OS installed and updated, etc., since it doesn’t support secure boot out of the box, you’ll have to disable it (secure boot) to install the distribution, then download and install Go, and finally download and install sbctl:
In your web browser, navigate to the sbctl Download page.
In the Featured downloads section, select Linux
to download the Go package.
Open a terminal window, and navigate to your Downloads directory:
cd ~/Downloads
Execute the following command:
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf ./go1.23.4.linux-amd64.tar.gz
The above command removes any Go installation located at /usr/local/go
if an installation exists there, then extracts Go from the package you downloaded, and installs it there.
Next, add /usr/local/go/bin
to the PATH
environment variable. To do so, edit ~/.profile using nano in a terminal window, with the following command:
nano ~/.profile
Add the following lines to the bottom of the file, with a blank line between what was already there, and what you add here:
# Add /usr/local/bin to the PATH
export PATH=$PATH:/usr/local/go/bin
Exit nano, saving your changes, using the following key combinations/key presses:
Ctrl+X
y
Enter
Apply the change to the PATH variable immediately, or reboot the computer.
In the terminal, execute the following command:
export PATH=$PATH:/usr/local/go/bin
Verify your Go installation by typing the following command in the terminal:
go version
The output of the above command should be:
go version go1.23.4 linux/amd64
Next, install the dependencies for sbctl using apt:
sudo apt install util-linux
sudo apt install binutils
sudo apt install asciidoc
A few of the above commands may report that the latest version is already installed, and that’s a good thing.
Install sbctl using git:
git clone https://github.com/foxboron/sbctl.git
cd sbctl
make
./sbctl
The last command (above) should produce the help output for sbctl. It verifies that sbctl has been built successfully.
Next, move sbctl to the /usr/bin directory:
sudo mv ./sbctl /usr/bin
If you’ve reached this point without encountering any errors, you can follow the instructions in my previous post to set up secure boot support for Pop!_OS.
UPDATE2!!
After completing my last update, I attempted to enable secure boot in Pop!_OS (installed in QEMU/KVM). I cannot verify that this will work correctly, because I cannot access the UEFI interface from within the virtual machine. I hope anyone who uses this information on bare metal has better luck than I’ve had in my virtual machine.
UPDATE3!!!
I decided ti make 70GB available on my primary laptop PC to install Pop!_OS on bare metal. I followed the guidance I provided in these two posts, and I’m writing this post from within Pop!_OS with secure boot enabled, so what I’ve provided here should work with Pop!_OS as the only installed OS.
I installed Pop!_OS two times, first with the default boot loader, setting up sbctl as described here, and second, after getting the OS installed and updated, I installed rEFInd, then followed these guides to download and install the latest version of GO, build sbctl from source, and I was able to set up secure boot successfully in both cases.
UPDATE4!!!
During this process, I learned something new about rEFInd! The left-most item in the tool bar (under the boot options icons) allows me to remove boot loaders from the efi, one at a time, so for example, after removing Pop!_OS from my system, I was able to remove its boot-loader too, using this tool. How cool is that?
Unless I learn something new, that’s pertinent to this topic, this will be my last update here.
I hope this helps others,
Ernie