More fixes

This commit is contained in:
Core 2023-05-09 21:41:53 +01:00
parent ae82ea64d1
commit 8d1dba2977
No known key found for this signature in database

View file

@ -38,12 +38,12 @@ jobs:
path: $(YARN_CONFIG_CACHE)
displayName: Cache yarn
# Install dependencies (frozen-lockfile for non-PR builds)
# Install dependencies (immutable for non-PR builds)
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn --immutable
- script: yarn install --immutable
displayName: "Install Dependencies"
- ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn
- script: yarn install
displayName: "Install Dependencies"
- script: yarn dist:linux
@ -88,12 +88,12 @@ jobs:
path: $(YARN_CONFIG_CACHE)
displayName: Cache yarn
# Install dependencies (frozen-lockfile for non-PR builds)
# Install dependencies (immutable for non-PR builds)
- ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn --immutable
- script: yarn install --immutable
displayName: "Install Dependencies"
- ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
- script: yarn
- script: yarn install
displayName: "Install Dependencies"
- script: yarn dist:win