Skip to content

Commit 86f91cc

Browse files
authored
Merge pull request #16 from secondlife/signal/xz
Switch to download-artifact@v4, xz compression
2 parents da6b757 + 7f439c4 commit 86f91cc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

post-bugsplat-mac/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
using: composite
2929
steps:
3030
- name: Download viewer symbols
31-
uses: actions/download-artifact@v3
31+
uses: actions/download-artifact@v4
3232
with:
3333
name: macOS-symbols
3434
path: _artifacts

post-bugsplat-windows/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ runs:
2828
using: composite
2929
steps:
3030
- name: Download viewer exe
31-
uses: actions/download-artifact@v3
31+
uses: actions/download-artifact@v4
3232
with:
3333
name: Windows-app
3434
path: _artifacts
3535

3636
- name: Download viewer symbols
37-
uses: actions/download-artifact@v3
37+
uses: actions/download-artifact@v4
3838
with:
3939
name: Windows-symbols
4040
path: _artifacts
@@ -43,7 +43,7 @@ runs:
4343
shell: bash
4444
run: |
4545
cd _artifacts
46-
tar -xjf secondlife-symbols-windows-64.tar.bz2
46+
tar -xJf secondlife-symbols-windows-64.tar.xz
4747
4848
- name: Post to BugSplat
4949
uses: BugSplat-Git/symbol-upload@v7.2.3

sign-pkg-mac/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ runs:
4545
using: composite
4646
steps:
4747
- name: Fetch Mac app
48-
uses: actions/download-artifact@v3
48+
uses: actions/download-artifact@v4
4949
with:
5050
name: macOS-app
5151
path: .tarball
@@ -56,7 +56,7 @@ runs:
5656
run: |
5757
set -x
5858
mkdir -p ".app"
59-
tar xjf .tarball/* -C ".app"
59+
tar xJf .tarball/* -C ".app"
6060
6161
- name: Set up the app sparseimage
6262
shell: bash
@@ -172,7 +172,7 @@ runs:
172172
rm "${{ env.sparsename }}"
173173
174174
- name: Post the installer
175-
uses: actions/upload-artifact@v3
175+
uses: actions/upload-artifact@v4
176176
with:
177177
name: "macOS-installer"
178178
path: ${{ env.installer }}

sign-pkg-windows/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
using: composite
2424
steps:
2525
- name: Fetch Windows app
26-
uses: actions/download-artifact@v3
26+
uses: actions/download-artifact@v4
2727
with:
2828
name: Windows-app
2929
path: .app
@@ -101,7 +101,7 @@ runs:
101101
"$installer"
102102
103103
- name: Post the installer
104-
uses: actions/upload-artifact@v3
104+
uses: actions/upload-artifact@v4
105105
with:
106106
name: "Windows-installer"
107107
path: ${{ env.installer }}

0 commit comments

Comments
 (0)