Skip to content

Commit 2671536

Browse files
Fixes conditional check for EGO upload
Corrects the conditional statement to properly evaluate the SHOULD_UPLOAD environment variable during the EGO upload step. This ensures the upload only occurs when the variable is explicitly set to 'true'.
1 parent b37659c commit 2671536

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
./SettingsCenter@lauinger-clan.de.shell-extension.zip
5151
5252
- name: EGO Upload
53-
if: env.SHOULD_UPLOAD =='true'
53+
if: env.SHOULD_UPLOAD == 'true'
5454
uses: fire-man-x/gnome-shell-extension-uploader@v1
5555
with:
5656
# Using your secret names: EGO_USER and EGO_PASSWORD

0 commit comments

Comments
 (0)