We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dedc6dc commit cebcb23Copy full SHA for cebcb23
action.yml
@@ -53,9 +53,12 @@ runs:
53
if: ${{ inputs.install-apptainer == 'true' }}
54
shell: bash -el {0}
55
run: |
56
+ if ! command -v apt-get &> /dev/null; then
57
+ echo "Error: This action currently supports Apptainer installation only on Ubuntu runners"
58
+ exit 1
59
+ fi
60
sudo apt-get update
61
sudo apt-get install -y apptainer
-
62
- name: Prepare .snakemake.environment.yaml
63
64
0 commit comments