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
9 changes: 8 additions & 1 deletion .github/workflows/release-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ on:
description: 'Release branch to build & publish from'
required: true
type: string
uploadUrl:
description: 'Location to publish packages to'
required: false
default: "up-ap.nginx.com"
workflow_call:
inputs:
githubRelease:
Expand All @@ -61,6 +65,9 @@ on:
releaseBranch:
type: string
required: true
uploadUrl:
type: string
default: "up-ap.nginx.com"

env:
NFPM_VERSION: 'v2.35.3'
Expand Down Expand Up @@ -314,7 +321,7 @@ jobs:
if: ${{ inputs.publishPackages == true }}
env:
TOKEN: ${{ steps.idtoken.outputs.id_token }}
UPLOAD_URL: ${{ secrets.UPLOAD_URL }}
UPLOAD_URL: ${{ inputs.uploadUrl }}
run: |
make release

Expand Down