Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
3afde25b
Commit
3afde25b
authored
2 years ago
by
Signal Linden
Browse files
Options
Downloads
Patches
Plain Diff
Upload macos installer
parent
d842eb98
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/build.yaml
+8
-6
8 additions, 6 deletions
.github/workflows/build.yaml
with
8 additions
and
6 deletions
.github/workflows/build.yaml
+
8
−
6
View file @
3afde25b
...
@@ -10,11 +10,11 @@ jobs:
...
@@ -10,11 +10,11 @@ jobs:
build
:
build
:
strategy
:
strategy
:
matrix
:
matrix
:
runner
:
[
windows-2022
-public-005
]
runner
:
[
windows-2022
,
macos-11
]
configuration
:
[
ReleaseOS
]
configuration
:
[
ReleaseOS
]
addrsize
:
[
64
]
addrsize
:
[
64
]
include
:
include
:
-
runner
:
windows-2022
-public-005
-
runner
:
windows-2022
configuration
:
ReleaseOS
configuration
:
ReleaseOS
addrsize
:
32
addrsize
:
32
runs-on
:
${{ matrix.runner }}
runs-on
:
${{ matrix.runner }}
...
@@ -43,7 +43,7 @@ jobs:
...
@@ -43,7 +43,7 @@ jobs:
id
:
cache-installables
id
:
cache-installables
with
:
with
:
path
:
.autobuild-installables
path
:
.autobuild-installables
key
:
${{
matrix.
runner }}-${{ matrix.addrsize }}-${{ matrix.configuration }}-${{ hashFiles('autobuild.xml') }}
key
:
${{ runner
.os
}}-${{ matrix.addrsize }}-${{ matrix.configuration }}-${{ hashFiles('autobuild.xml') }}
-
name
:
Install windows dependencies
-
name
:
Install windows dependencies
if
:
runner.os == 'Windows'
if
:
runner.os == 'Windows'
...
@@ -62,12 +62,14 @@ jobs:
...
@@ -62,12 +62,14 @@ jobs:
if [[ "$RUNNER_OS" == "Windows" ]]; then
if [[ "$RUNNER_OS" == "Windows" ]]; then
installer_path=$(find ./build-*/newview/ | grep '_Setup\.exe')
installer_path=$(find ./build-*/newview/ | grep '_Setup\.exe')
installer_name="$(basename $installer_path)"
installer_name="$(basename $installer_path)"
echo "::set-output name=installer_path::$installer_path"
elif [[ "$RUNNER_OS" == "macOS" ]]; then
echo "::set-output name=installer_name::$installer_name"
installer_path=$(find ./build-*/newview/ | grep '\.dmg')
installer_name="$(basename $installer_path)"
fi
fi
echo "::set-output name=installer_path::$installer_path"
echo "::set-output name=installer_name::$installer_name"
-
name
:
Upload installer
-
name
:
Upload installer
if
:
runner.os == 'Windows'
uses
:
actions/upload-artifact@v3
uses
:
actions/upload-artifact@v3
with
:
with
:
name
:
${{ steps.build.outputs.installer_name }}
name
:
${{ steps.build.outputs.installer_name }}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment