Skip to content
Snippets Groups Projects
Commit b0224954 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-19243: Directly reference action subdirs in viewer-build-util

instead of trying to checkout viewer-build-util (which doesn't work) and then
reference action subdirs from the filesystem.

Also engage (initial placeholder) actions to sign and package the
platform-specific application artifacts.
parent 3e86f26b
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
......@@ -263,19 +263,26 @@ jobs:
path: |
${{ steps.build.outputs.physicstpv }}
sign-and-package-windows:
needs: build
runs-on: windows
steps:
- name: Sign and package Windows viewer
uses: secondlife/viewer-build-util/sign-pkg-windows@main
sign-and-package-mac:
needs: build
runs-on: macos-latest
steps:
- name: Sign and package Mac viewer
uses: secondlife/viewer-build-util/sign-pkg-mac@main
post-windows-symbols:
needs: build
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: ./.util/post-bugsplat-windows
uses: secondlife/viewer-build-util/post-bugsplat-windows@main
with:
username: ${{ secrets.BUGSPLAT_USER }}
password: ${{ secrets.BUGSPLAT_PASS }}
......@@ -287,15 +294,8 @@ jobs:
needs: build
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: ./.util/post-bugsplat-mac
uses: secondlife/viewer-build-util/post-bugsplat-mac@main
with:
username: ${{ secrets.BUGSPLAT_USER }}
password: ${{ secrets.BUGSPLAT_PASS }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment