Skip to content

Commit

Permalink
change matri.os to runner.os
Browse files Browse the repository at this point in the history
  • Loading branch information
jmckisson committed Apr 23, 2024
1 parent 2b9739c commit cb02eaf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-mudlet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
fetch-depth: 0

- name: (Windows) Setup MSYS2
if: matrix.os == 'windows-2019'
if: runner.os == 'windows-2019'
uses: msys2/setup-msys2@v2
with:
msystem: MINGW32
Expand All @@ -69,23 +69,23 @@ jobs:
# mingw-w64-i686-qt5

- name: (Windows) Build Environment Setup
if: matrix.os == 'windows-2019'
if: runner.os == 'windows-2019'
shell: msys2 {0}
run: $GITHUB_WORKSPACE/CI/setup-windows-sdk.sh base
- name: (Windows) Build
if: matrix.os == 'windows-2019'
if: runner.os == 'windows-2019'
shell: msys2 {0}
run: |
export BUILD_CONFIG=release
$GITHUB_WORKSPACE/CI/build-mudlet-for-windows.sh
- name: (Windows) Package
if: matrix.os == 'windows-2019'
if: runner.os == 'windows-2019'
shell: msys2 {0}
run: |
export BUILD_CONFIG=release
$GITHUB_WORKSPACE/CI/package-mudlet-for-windows.sh
- name: (Windows) Deploy
if: matrix.os == 'windows-2019'
if: runner.os == 'windows-2019'
shell: powershell
run: |
$Env:BUILD_CONFIG=release
Expand All @@ -96,7 +96,7 @@ jobs:
$Env:GITHUB_PULL_REQUEST_HEAD_SHA = ${{ github.event.pull_request.head.sha }}
$Env:GITHUB_WORKSPACE/CI/deploy-mudlet-for-windows.ps1
- name: (Windows) Upload Artifact
if: matrix.os == 'windows-2019' && env.PUBLIC_TEST_BUILD == 'false'
if: runner.os == 'windows-2019' && env.PUBLIC_TEST_BUILD == 'false'
uses: actions/upload-artifact@v2
with:
name: Mudlet-${{ env.VERSION }}-windows-installer.exe
Expand Down

0 comments on commit cb02eaf

Please sign in to comment.