File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : Find changed recipes
15
15
id : files
16
- uses : jitterbit/get-changed-files@b17fbb00bdc0c0f63fcf166580804b4d2cdc2a42
16
+ uses : jitterbit/get-changed-files@v1
17
17
with :
18
18
format : json
19
19
64
64
cd Lmod-${PKG_VERSION}
65
65
./configure --prefix=/usr/share && make && make install
66
66
67
- - uses : eWaterCycle/setup-singularity@v6
67
+ - uses : eWaterCycle/setup-singularity@v7
68
68
if : ${{ env.keepgoing == 'true' }}
69
69
name : Install Singularity
70
70
with :
Original file line number Diff line number Diff line change 40
40
cd Lmod-${PKG_VERSION}
41
41
./configure --prefix=/usr/share && make && make install
42
42
43
- - uses : eWaterCycle/setup-singularity@v6
43
+ - uses : eWaterCycle/setup-singularity@v7
44
44
if : ${{ matrix.container_tech == 'singularity' }}
45
45
name : Install Singularity
46
46
with :
Original file line number Diff line number Diff line change @@ -134,7 +134,14 @@ def _sync(
134
134
# Create a remote registry with settings preference
135
135
Remote = GitHub if "github.com" in sync_registry else GitLab
136
136
remote = Remote (sync_registry , tag = tag )
137
- local = self .get_registry (local or self .settings .filesystem_registry )
137
+ local = local or self .settings .filesystem_registry
138
+ if not local :
139
+ logger .exit (
140
+ "sync is only supported if you have added a filesystem registry."
141
+ )
142
+
143
+ # Get the local registry
144
+ local = self .get_registry (local )
138
145
139
146
# We sync to our first registry - if not filesystem, no go
140
147
if not local .is_filesystem_registry :
You can’t perform that action at this time.
0 commit comments