-
-
Notifications
You must be signed in to change notification settings - Fork 294
Add parameter linux64RemoveExecutableExtension
#726
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |||||||||||||
- unityVersion: 6000.0.36f1 | ||||||||||||||
targetPlatform: StandaloneWindows64 | ||||||||||||||
buildProfile: 'Assets/Settings/Build Profiles/Sample Windows Build Profile.asset' | ||||||||||||||
|
||||||||||||||
steps: | ||||||||||||||
########################### | ||||||||||||||
# Checkout # | ||||||||||||||
|
@@ -146,6 +146,8 @@ jobs: | |||||||||||||
########################### | ||||||||||||||
- uses: actions/upload-artifact@v4 | ||||||||||||||
with: | ||||||||||||||
name: Build ${{ matrix.targetPlatform }} on Windows (${{ matrix.unityVersion }})${{ matrix.enableGpu && ' With GPU' || '' }}${{ matrix.buildProfile && ' With Build Profile' || '' }} | ||||||||||||||
name: | ||||||||||||||
Build ${{ matrix.targetPlatform }} on Windows (${{ matrix.unityVersion }})${{ matrix.enableGpu && ' With | ||||||||||||||
GPU' || '' }}${{ matrix.buildProfile && ' With Build Profile' || '' }} | ||||||||||||||
Comment on lines
+149
to
+151
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Avoid embedding newlines in artifact-name expressions. Splitting the scalar across lines puts an actual newline inside the - with:
- name:
- Build ${{ matrix.targetPlatform }} on Windows (${{ matrix.unityVersion }})${{ matrix.enableGpu && ' With
- GPU' || '' }}${{ matrix.buildProfile && ' With Build Profile' || '' }}
+ with:
+ name: >-
+ Build ${{ matrix.targetPlatform }} on Windows (${{ matrix.unityVersion }})${{ matrix.enableGpu && ' With GPU' || '' }}${{ matrix.buildProfile && ' With Build Profile' || '' }} 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
||||||||||||||
path: build | ||||||||||||||
retention-days: 14 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prevent newline insertion in artifact-name literal.
The line break inside
' With
…' Build Profile'
injects a newline into the evaluated string, yielding a multi-line artifact name whenbuildProfile
is set. Keep the literal on one line (or use a folded scalar) so the name stays single-line.🤖 Prompt for AI Agents