Skip to content

Commit 99d6da0

Browse files
authored
Merge pull request #7 from modelstudioai/dragon/fix-windows-desktop-release-shell
[codex] Preserve Windows shell for desktop release builds
2 parents 9ae224a + 19c97e6 commit 99d6da0

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/desktop-release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,6 @@ jobs:
143143
runs-on: ${{ matrix.os }}
144144
timeout-minutes: 90
145145
needs: release_metadata
146-
defaults:
147-
run:
148-
shell: bash
149146
env:
150147
RELEASE_TAG: ${{ needs.release_metadata.outputs.tag }}
151148
RELEASE_VERSION: ${{ needs.release_metadata.outputs.version }}
@@ -184,12 +181,13 @@ jobs:
184181
run: bun install --frozen-lockfile
185182

186183
- name: Bump desktop version
187-
run: bun run bump-desktop-version "$RELEASE_VERSION"
184+
run: bun run bump-desktop-version "${{ needs.release_metadata.outputs.version }}"
188185

189186
- name: Confirm release version
190-
run: bun run check-release-version --version "$RELEASE_VERSION"
187+
run: bun run check-release-version --version "${{ needs.release_metadata.outputs.version }}"
191188

192189
- name: Configure optional signing secrets
190+
shell: bash
193191
env:
194192
APPLE_APP_SPECIFIC_PASSWORD_SECRET: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
195193
APPLE_ID_SECRET: ${{ secrets.APPLE_ID }}

0 commit comments

Comments
 (0)