Skip to content

Commit 7868f45

Browse files
authored
Merge pull request #252 from AlchemyViewer/project/Linux
Fix linux release package upload
2 parents ec7a52d + 2f71986 commit 7868f45

2 files changed

Lines changed: 6 additions & 11 deletions

File tree

.github/workflows/build.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ jobs:
451451

452452
- uses: actions/download-artifact@v5
453453
with:
454-
pattern: "Linux-app"
454+
name: "Linux-app"
455455

456456
- name: Rename metadata
457457
run: |
@@ -468,14 +468,10 @@ jobs:
468468
uses: secondlife-3p/action-gh-release@v1
469469
with:
470470
# name the release page for the branch
471-
name: "${{ needs.build.outputs.viewer_branch }}"
471+
name: "${{ needs.build.outputs.viewer_channel }} ${{ needs.build.outputs.viewer_version }}"
472472
# SL-20546: want the channel and version to be visible on the
473473
# release page
474474
body: |
475-
Build ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
476-
${{ needs.build.outputs.viewer_channel }}
477-
${{ needs.build.outputs.viewer_version }}
478-
${{ needs.build.outputs.relnotes }}
479475
prerelease: true
480476
generate_release_notes: true
481477
target_commitish: ${{ github.sha }}
@@ -484,9 +480,7 @@ jobs:
484480
files: |
485481
macOS-installer/*.dmg
486482
Windows-installer/*.exe
487-
Linux-app/*.tar.xz
488-
*-autobuild-package.xml
489-
*-viewer_version.txt
483+
*.tar.xz
490484
491485
- name: post release URL
492486
run: |

.github/workflows/tag-release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
# schedule event triggers always run on the default branch
55
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
66
schedule:
7-
# run "nightly" builds on default branch every mon/wed/fri
8-
- cron: "21 2 * * 2,4,6" # 2:21am UTC tues/thurs/sat == 7:21pm PDT mon/wed/fri -- see https://crontab.guru/#21_01_*_*_2,4,6
7+
# run "nightly" builds on default branch every fri
8+
- cron: "21 2 * * 6" # 2:21am UTC sat == 7:21pm PDT fri -- see https://crontab.guru/#21_01_*_*_2,4,6
99
workflow_dispatch:
1010
inputs:
1111
channel:
@@ -17,6 +17,7 @@ on:
1717
- "Test"
1818
- "Develop"
1919
- "Project"
20+
- "Beta"
2021
- "Release"
2122
project:
2223
description: "Project Name (used for channel name in project builds, and tag name for all builds)"

0 commit comments

Comments
 (0)