Skip to content

Commit c4255dd

Browse files
Fix GitHub Actions YAML syntax in release workflow
Changed double quotes to single quotes in `if` expressions to resolve YAML parsing errors.
1 parent e5830b9 commit c4255dd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
fi
9191
9292
- name: Build Android APK (signed)
93-
if: steps.keystore.outputs.has_keystore == "true"
93+
if: steps.keystore.outputs.has_keystore == 'true'
9494
env:
9595
ALIAS: ${{ secrets.ANDROID_SIGNING_KEY_ALIAS }}
9696
KEYPASS: ${{ secrets.ANDROID_SIGNING_KEY_PASSWORD }}
@@ -109,7 +109,7 @@ jobs:
109109
-p:AndroidSigningStorePass="${STOREPASS}"
110110
111111
- name: Build Android APK (unsigned)
112-
if: steps.keystore.outputs.has_keystore != "true"
112+
if: steps.keystore.outputs.has_keystore != 'true'
113113
run: |
114114
dotnet publish -c Release \
115115
osu.Android/osu.Android.csproj \
@@ -144,7 +144,7 @@ jobs:
144144
if-no-files-found: error
145145

146146
- name: Create GitHub Release
147-
if: startsWith(github.ref, "refs/tags/")
147+
if: startsWith(github.ref, 'refs/tags/')
148148
uses: softprops/action-gh-release@v2
149149
with:
150150
files: ${{ steps.find_apk.outputs.apk_path }}

0 commit comments

Comments
 (0)