We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fa60e5 commit 81263ffCopy full SHA for 81263ff
.github/workflows/il2cpp.yml
@@ -78,12 +78,12 @@ jobs:
78
# /opt/unity/Editor/Unity -batchmode -nographics -quit -projectPath "$GITHUB_WORKSPACE" -buildTarget ${{ matrix.target }} -executeMethod BuildScript.PerformBuild -logFile "$outdir/build.log" || true
79
80
- name: Archive build (Linux/macOS)
81
- if: runner.os != 'windows-latest'
+ if: runner.os != 'windows'
82
run: |
83
zip -r build-${{ matrix.unity }}-${{ matrix.target }}.zip ./build
84
85
- name: Archive build (Windows)
86
- if: runner.os == 'windows-latest'
+ if: runner.os == 'windows'
87
shell: pwsh
88
89
Compress-Archive -Path build -DestinationPath build-${{ matrix.unity }}-${{ matrix.target }}.zip -Force
0 commit comments