Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/release-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,13 @@ jobs:
body-file: ${{ steps.combined_notes.outputs.body_file }}
download-artifact: "false"

nexus-dry-run:
nexus-upload:
# Chained from `release` to avoid the artifact-attachment race a
# parallel `release: published` trigger on a separate workflow had:
# the prior release-nexus-trigger.yaml fired in parallel with this
# build and tried to download artifacts before they existed.
# Stable tags only (no '-' in the tag name).
name: Nexus Upload (dry run)
name: Nexus Upload
needs: [release]
if: >
always() && !cancelled() &&
Expand All @@ -205,7 +205,11 @@ jobs:
uses: ./.github/workflows/nexus-upload.yaml
with:
tag: ${{ github.event.release.tag_name }}
artifact_pattern: "CommunityShaders-*.7z"
dry_run: "true"
secrets:
UNEX_APIKEY: ${{ secrets.UNEX_APIKEY }}
# aio mode (the default) ships CommunityShaders_AIO-*.7z to the fork
# page (180419); leave artifact_pattern unset so it uses that default
# rather than the CORE archive. Real upload (dry_run=false): the
# reusable workflow skips a version already on Nexus, so re-runs are safe.
dry_run: "false"
# Nested reusable workflows don't auto-inherit repo secrets; inherit
# passes the UNEX_* set (cookie + API key) without enumerating each.
secrets: inherit
Loading