summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-09-12 12:46:28 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-09-12 12:46:28 -0400
commit0992a0af3bc1d9c78d611c3778eca86b575dbe4c (patch)
treeccca77ef11e847fa646c8588d091a30cb6bd7f1b
parentf31326189c99b18758b3754460d105a0195640c6 (diff)
SL-19243: Use consolidated viewer-build-util
instead of distinct viewer-post-bugsplat-{windows,mac} repos.
-rw-r--r--.github/workflows/build.yaml22
1 files changed, 18 insertions, 4 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 9f10275d7c..7c1489e7fd 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -265,10 +265,17 @@ jobs:
post-windows-symbols:
needs: build
- runs-on: windows
+ runs-on: ubuntu-latest
steps:
+ - name: Checkout viewer-build-util
+ uses: actions/checkout@v3
+ with:
+ repository: secondlife/viewer-build-util
+ ref: main
+ path: .util
+
- name: Post Windows symbols
- uses: secondlife/viewer-post-bugsplat-windows@main
+ uses: .util/post-bugsplat-windows
with:
username: ${{ secrets.BUGSPLAT_USER }}
password: ${{ secrets.BUGSPLAT_PASS }}
@@ -278,10 +285,17 @@ jobs:
post-mac-symbols:
needs: build
- runs-on: macos-latest
+ runs-on: ubuntu-latest
steps:
+ - name: Checkout viewer-build-util
+ uses: actions/checkout@v3
+ with:
+ repository: secondlife/viewer-build-util
+ ref: main
+ path: .util
+
- name: Post Mac symbols
- uses: secondlife/viewer-post-bugsplat-mac@main
+ uses: .util/post-bugsplat-mac
with:
username: ${{ secrets.BUGSPLAT_USER }}
password: ${{ secrets.BUGSPLAT_PASS }}